Skip to content
Merged
Show file tree
Hide file tree
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
12 changes: 12 additions & 0 deletions .github/workflows/security-deep.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,12 @@ jobs:
name: Extended Fuzzing (3 targets × 1h)
runs-on: cachekit
timeout-minutes: 200
env:
# Avoid EXDEV "cross-device link" errors when rustup stages a nightly
# toolchain across overlay/hostPath boundaries on the ARC runner pod
# (rust-lang/rustup#1239). Same pattern as fuzz-smoke.yml.
RUSTUP_HOME: /tmp/rustup
CARGO_HOME: /tmp/cargo
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6

Expand Down Expand Up @@ -127,6 +133,12 @@ jobs:
name: Miri Full Suite
runs-on: cachekit
timeout-minutes: 30
env:
# Avoid EXDEV "cross-device link" errors when rustup stages a nightly
# toolchain across overlay/hostPath boundaries on the ARC runner pod
# (rust-lang/rustup#1239). Same pattern as fuzz-smoke.yml.
RUSTUP_HOME: /tmp/rustup
CARGO_HOME: /tmp/cargo
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6

Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/security-medium.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,12 @@ jobs:
name: Miri UB Detection (Subset)
runs-on: cachekit
timeout-minutes: 20
env:
# Avoid EXDEV "cross-device link" errors when rustup stages a nightly
# toolchain across overlay/hostPath boundaries on the ARC runner pod
# (rust-lang/rustup#1239). Same pattern as fuzz-smoke.yml.
RUSTUP_HOME: /tmp/rustup
CARGO_HOME: /tmp/cargo
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6

Expand Down
Loading