Skip to content

Commit 3bfe73e

Browse files
committed
run cargo clean on long-running CI action to not run out of disk space
Actually we did that already, but now we clean even earlier.
1 parent dbbd148 commit 3bfe73e

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

justfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,11 @@ alias nt := nextest
1313
test: clippy check doc unit-tests journey-tests-pure journey-tests-small journey-tests-async journey-tests
1414

1515
# run all tests, without clippy, including journey tests, try building docs (and clear target on CI)
16-
ci-test: check doc unit-tests clear-target journey-tests-pure journey-tests-small journey-tests-async journey-tests
16+
ci-test: check doc clear-target unit-tests ci-journey-tests
17+
18+
# run all journey tests, but assure these are running after `cargo clean` (and workaround a just-issue of deduplicating targets)
19+
ci-journey-tests:
20+
just clear-target journey-tests-pure journey-tests-small journey-tests-async journey-tests
1721

1822
clear-target:
1923
cargo clean

0 commit comments

Comments
 (0)