Skip to content
Merged
Changes from all commits
Commits
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
11 changes: 9 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,13 @@ env:
jobs:
test:
name: Test
runs-on: [self-hosted, linux, x64, rust-cpu]
# NOTE: moved back to ubuntu-latest from [self-hosted, linux, x64, rust-cpu]
# because z3-sys's C++ build was exhausting the smithy runners' temp disk
# ("No space left on device" while compiling z3 AST sources). The Test job
# builds the entire workspace including synth-verify (which depends on z3),
# so the disk pressure is real. Once the smithy runners get a bigger /tmp
# we can move this back.
runs-on: ubuntu-latest
env:
RUSTFLAGS: -Dwarnings
steps:
Expand All @@ -33,7 +39,8 @@ jobs:

clippy:
name: Clippy
runs-on: [self-hosted, linux, x64, rust-cpu]
# Same reasoning as Test — z3-sys build exhausts the smithy runner's /tmp.
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
Expand Down
Loading