-
Notifications
You must be signed in to change notification settings - Fork 549
ci: split out integration tests #3806
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
6f96c48
ci: split out integration tests
roeap 45c29cf
ci: split out integration tests fixes
roeap f1d4c9a
ci: split out integration tests fixes2
roeap 7d39254
ci: split out integration tests fixes 3
roeap 0e663c4
ci: split out integration tests fixes 4
roeap 37ff78a
ci: split out integration tests fixes 5
roeap 3293678
ci: split out integration tests fixes 8
roeap 4ad996e
ci: split out integration tests fixes 7
roeap d00eda6
ci: limit scope in default tests
roeap 63b8c4f
ci: exclude redundant tests
roeap 6fecdd4
ci: exclude redundant tests fix
roeap 3106d56
ci: try fixing shell
roeap cbdbe93
ci: exclude wrapper package in default tests
roeap 8561fa6
ci: onlt linux on PRs
roeap 09d2845
ci: only linux on PRs 2
roeap f3741ae
fix: needs
roeap be0b027
chore: rename docs ci
roeap c4dadb6
fix: run typos on pr not target
roeap File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -16,9 +16,6 @@ runs: | |
| using: "composite" | ||
|
|
||
| steps: | ||
| - name: checkout | ||
| uses: actions/checkout@v4 | ||
|
|
||
| - name: Install uv | ||
| uses: astral-sh/setup-uv@v3 | ||
|
|
||
|
|
@@ -27,14 +24,13 @@ runs: | |
| with: | ||
| python-version: ${{ inputs.python-version }} | ||
|
|
||
| - name: Install Rust toolchain | ||
| uses: actions-rs/toolchain@v1 | ||
| with: | ||
| profile: default | ||
| toolchain: ${{ inputs.rust-toolchain }} | ||
| override: true | ||
| components: rustfmt, clippy | ||
| - name: Setup sccache | ||
| uses: mozilla-actions/[email protected] | ||
|
|
||
| - uses: Swatinem/rust-cache@v2 | ||
| - name: Setup Rust toolchain | ||
| uses: actions-rust-lang/setup-rust-toolchain@v1 | ||
|
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The |
||
| with: | ||
| cache-targets: false | ||
| toolchain: ${{ inputs.rust-toolchain }} | ||
| cache: true | ||
| # if we ever get rid of all the clippy warnings, we can remove this line | ||
| rustflags: "" | ||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we need to checkout the code before we can use local actions. so this must have been unused anyhow.