Skip to content

Commit 3dcc9e3

Browse files
committed
CI: make downgrade and slow integration tests depend on check-compiled-source step.
As pointed out by Alex Myers: we don't want to waste time running the complex steps if the generated files are not up-to-date. But we still run the faster "integration" tests (not valgrind or sanitizer ones), since they often reveal early failures. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
1 parent c01137a commit 3dcc9e3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ jobs:
296296
name: Check we can downgrade the node
297297
runs-on: ubuntu-24.04
298298
needs:
299-
- compile
299+
- check-compiled-source
300300
strategy:
301301
fail-fast: false
302302
matrix:
@@ -496,7 +496,7 @@ jobs:
496496
env:
497497
RUST_PROFILE: small # Has to match the one in the compile step
498498
needs:
499-
- compile
499+
- check-compiled-source
500500
strategy:
501501
fail-fast: false
502502
matrix:
@@ -557,7 +557,7 @@ jobs:
557557
SLOW_MACHINE: 1
558558
TEST_DEBUG: 1
559559
needs:
560-
- compile
560+
- check-compiled-source
561561
strategy:
562562
fail-fast: false
563563
matrix:

0 commit comments

Comments
 (0)