-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Each platform test run only waits for the CLI to be built for …
…that platform, thus speeding up the end-to-end CI flow for Linux and MacOS
- Loading branch information
1 parent
9482be7
commit 68c8745
Showing
16 changed files
with
1,898 additions
and
380 deletions.
There are no files selected for viewing
This file contains 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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Verify dependencies | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
ci-freshness: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Install Rust | ||
uses: actions-rust-lang/[email protected] | ||
with: | ||
cache-workspaces: "./libs -> ./target" | ||
- name: Generate docs.yml | ||
run: | | ||
cd ci_utils | ||
cargo run > docs.yml | ||
mv docs.yml ../.github/workflows | ||
- name: Fail if anything changed | ||
run: | | ||
git add . | ||
git diff --quiet --exit-code --cache || (echo "Please regenerate the docs.yml CI script" && exit 1) |
Oops, something went wrong.