Skip to content

Commit

Permalink
chore: Each platform test run only waits for the CLI to be built for …
Browse files Browse the repository at this point in the history
…that platform, thus speeding up the end-to-end CI flow for Linux and MacOS
  • Loading branch information
LukeMathWalker committed Sep 27, 2024
1 parent 9482be7 commit 68c8745
Show file tree
Hide file tree
Showing 16 changed files with 1,898 additions and 380 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/ci_freshness.yml
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)
Loading

0 comments on commit 68c8745

Please sign in to comment.