Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
973339e
Split cargo ci subcommands into packages
clockwork-labs-bot Aug 7, 2026
0272d77
Fix wasm bindings CI command path
clockwork-labs-bot Aug 7, 2026
2c10c76
Replace gh run watch in Internal Tests
clockwork-labs-bot Aug 7, 2026
b4533da
Revert "Replace gh run watch in Internal Tests"
clockwork-labs-bot Aug 7, 2026
5b30bff
Merge remote-tracking branch 'origin/master' into bot/split-public-ca…
clockwork-labs-bot Aug 9, 2026
7166640
Split CI workflow helpers into packages
clockwork-labs-bot Aug 9, 2026
22a3096
Address CI command review comments
clockwork-labs-bot Aug 9, 2026
ffcaa08
Finish CI command review fixes
clockwork-labs-bot Aug 9, 2026
7da2130
Inline CI dlls command
clockwork-labs-bot Aug 9, 2026
0848cd3
Prune unused CI command deps
clockwork-labs-bot Aug 9, 2026
7447514
Inline CI keynote bench command
clockwork-labs-bot Aug 9, 2026
39db97d
Finish CI command review cleanup
clockwork-labs-bot Aug 9, 2026
f2c8936
Inline CI TypeScript test command
clockwork-labs-bot Aug 9, 2026
cedce19
Keep CI keynote bench package
clockwork-labs-bot Aug 9, 2026
f61a431
Restore split CI command binaries
clockwork-labs-bot Aug 9, 2026
84e12a0
Match split command argument handling
clockwork-labs-bot Aug 9, 2026
f74f418
Restore clap CI command dispatch
clockwork-labs-bot Aug 9, 2026
539edb5
Address cargo ci review comments
clockwork-labs-bot Aug 9, 2026
430a678
Allow CLI output in split CI commands
clockwork-labs-bot Aug 9, 2026
07cf1ed
Preserve smoketest runner args
clockwork-labs-bot Aug 9, 2026
c2ba677
Address cargo ci review followups
clockwork-labs-bot Aug 9, 2026
d02e783
Inline coordinate internal tests entrypoint
clockwork-labs-bot Aug 9, 2026
3d5d8fa
Apply suggestion from @bfops
bfops Aug 9, 2026
6440cbc
Add cargo ci dep-check
clockwork-labs-bot Aug 9, 2026
c1e9dbd
Render split cargo ci help from child commands
clockwork-labs-bot Aug 9, 2026
5daa24b
Address dep-check review
clockwork-labs-bot Aug 9, 2026
47a7090
Restore dep-check lint workflow
clockwork-labs-bot Aug 9, 2026
323cd2a
Delegate split cargo ci help
clockwork-labs-bot Aug 9, 2026
08dfcbc
Merge remote-tracking branch 'origin/bot/split-public-cargo-ci' into …
clockwork-labs-bot Aug 9, 2026
d7e4ff0
Remove unused dependencies for dep-check
clockwork-labs-bot Aug 9, 2026
2b0e861
Address dep-check review
clockwork-labs-bot Aug 9, 2026
03cb678
Clarify dep-check ignore comments
clockwork-labs-bot Aug 9, 2026
c1b498c
Fix browser feature dep-check comments
clockwork-labs-bot Aug 9, 2026
b91ddc9
[bot/cargo-ci-dep-check]: replace log dep
bfops Aug 9, 2026
bdde8d9
[bot/cargo-ci-dep-check]: remove
bfops Aug 9, 2026
3eae0f8
Apply suggestion from @bfops
bfops Aug 12, 2026
e61785c
Merge remote-tracking branch 'origin/master' into HEAD
clockwork-labs-bot Aug 14, 2026
08e17c3
Apply suggestion from @bfops
bfops Aug 14, 2026
de64ed7
[bot/cargo-ci-dep-check]: move
bfops Aug 14, 2026
4d4216e
[bot/cargo-ci-dep-check]: use shear
bfops Aug 14, 2026
fca11e6
[bot/cargo-ci-dep-check]: use shear
bfops Aug 14, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1627,3 +1627,29 @@ jobs:
# - name: Print rows in the user table
# if: always()
# run: spacetime sql quickstart-chat "SELECT * FROM user"

dep_check:
needs: [merge_queue_noop]
if: ${{ needs.merge_queue_noop.outputs.skip != 'true' }}
name: Dependency Check
runs-on: spacetimedb-new-runner-2
env:
CARGO_TARGET_DIR: ${{ github.workspace }}/target
RUST_BACKTRACE: full
steps:
- name: Checkout sources
uses: actions/checkout@v4

- uses: dsherret/rust-toolchain-file@v1
- name: Set default rust toolchain
run: rustup default $(rustup show active-toolchain | cut -d' ' -f1)
- run: echo ::add-matcher::.github/workflows/rust_matcher.json

- name: Install Rust 1.95 for cargo-shear
run: rustup toolchain install 1.95.0 --profile minimal

- name: Install cargo-shear
run: cargo +1.95.0 install cargo-shear --locked

- name: Run dependency check
run: cargo ci dep-check
Loading
Loading