Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 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
c1e9dbd
Render split cargo ci help from child commands
clockwork-labs-bot Aug 9, 2026
323cd2a
Delegate split cargo ci help
clockwork-labs-bot Aug 9, 2026
a7dc141
Use split binary help for cargo ci subcommands
clockwork-labs-bot Aug 9, 2026
cb1cdf5
Trim split help docs output
clockwork-labs-bot Aug 9, 2026
40bac67
Keep simple CI docs compact
clockwork-labs-bot Aug 9, 2026
a841ee0
Remove cargo ci self-docs
clockwork-labs-bot Aug 9, 2026
2a76f40
Address cargo ci split review
clockwork-labs-bot Aug 9, 2026
577f1f3
[bot/split-public-cargo-ci]: remove unneeded
bfops Aug 9, 2026
ccad6be
[bot/split-public-cargo-ci]: Merge branch 'bot/split-public-cargo-ci'…
bfops Aug 9, 2026
accb6d4
[bot/split-public-cargo-ci]: remove
bfops Aug 9, 2026
0115f5f
Use split command args for cargo ci help
clockwork-labs-bot Aug 9, 2026
14fa25e
Update cargo ci lockfile
clockwork-labs-bot Aug 9, 2026
cdae211
Move cargo ci args to slim package
clockwork-labs-bot Aug 9, 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
4 changes: 2 additions & 2 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ LICENSE.txt @cloutiertyler

/crates/cli/src/ @bfops @cloutiertyler @jdetter
/tools/ci/ @bfops @cloutiertyler @jdetter
/tools/ci/src/keynote_bench.rs @joshua-spacetime @cloutiertyler @jdetter
/tools/ci/src/codeowners_check.rs @cloutiertyler
/tools/ci/commands/keynote-bench/ @joshua-spacetime @cloutiertyler @jdetter
/tools/ci/commands/codeowners-check/ @cloutiertyler
/tools/upgrade-version/ @bfops @jdetter @cloutiertyler @rekhoff
/tools/release/ @bfops @jdetter @cloutiertyler @rekhoff
/tools/license-check/ @bfops @jdetter @cloutiertyler
Expand Down
33 changes: 0 additions & 33 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -681,39 +681,6 @@ jobs:
cargo test -- --test-threads=1
'

ci_command_docs:
needs: [merge_queue_noop]
if: ${{ needs.merge_queue_noop.outputs.skip != 'true' }}
name: Check CI command docs
runs-on: spacetimedb-new-runner-2
env:
RUST_BACKTRACE: full
steps:
- name: Find Git ref
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
shell: bash
run: |
PR_NUMBER="${{ github.event.inputs.pr_number || null }}"
if test -n "${PR_NUMBER}"; then
GIT_REF="$( gh pr view --repo clockworklabs/SpacetimeDB $PR_NUMBER --json headRefName --jq .headRefName )"
else
GIT_REF="${{ github.ref }}"
fi
echo "GIT_REF=${GIT_REF}" >>"$GITHUB_ENV"

- name: Checkout sources
uses: actions/checkout@v4
with:
ref: ${{ env.GIT_REF }}

- uses: dsherret/rust-toolchain-file@v1
- name: Set default rust toolchain
run: rustup default $(rustup show active-toolchain | cut -d' ' -f1)

- name: Check for docs change
run: cargo ci self-docs --check

cli_docs:
needs: [merge_queue_noop]
if: ${{ needs.merge_queue_noop.outputs.skip != 'true' }}
Expand Down
185 changes: 180 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,23 @@ members = [
"sdks/rust/tests/procedural-view-pk-client",
"sdks/rust/tests/event-table-client",
"tools/ci",
"tools/ci/args",
"tools/ci/commands/test",
"tools/ci/commands/lint",
"tools/ci/commands/wasm-bindings",
"tools/ci/commands/smoketests",
"tools/ci/commands/keynote-bench",
"tools/ci/commands/update-flow",
"tools/ci/commands/cli-docs",
"tools/ci/commands/global-json-policy",
"tools/ci/commands/publish-checks",
"tools/ci/commands/typescript-test",
"tools/ci/commands/version-upgrade-check",
"tools/ci/commands/docs",
"tools/ci/commands/codeowners-check",
"tools/ci/commands/cla-assistant",
"tools/ci/commands/coordinate-internal-tests",
"tools/ci/common",
"tools/keynote-bench-harness",
"tools/license-check",
"tools/replace-spacetimedb",
Expand Down
11 changes: 1 addition & 10 deletions tools/ci/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,7 @@ version = "0.1.0"
edition.workspace = true

[dependencies]
log.workspace = true
anyhow.workspace = true
chrono = { workspace = true, features=["clock"] }
clap.workspace = true
regex.workspace = true
reqwest = { workspace = true, features = ["blocking", "json"] }
serde.workspace = true
serde_json.workspace = true
duct.workspace = true
tempfile.workspace = true
env_logger.workspace = true
keynote-bench-harness = { path = "../keynote-bench-harness" }
spacetimedb-guard.workspace = true
ci-args = { path = "args" }
Loading
Loading