Skip to content

Commit eceb7cc

Browse files
committed
CI: make downgrade and integration tests depend on postbuild 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. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
1 parent 12d41de commit eceb7cc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ jobs:
286286
name: Check we can downgrade the node
287287
runs-on: ubuntu-24.04
288288
needs:
289-
- compile
289+
- postbuild
290290
strategy:
291291
fail-fast: false
292292
matrix:
@@ -379,7 +379,7 @@ jobs:
379379
RUST_PROFILE: release # Has to match the one in the compile step
380380
PYTEST_OPTS: -vvv --junit-xml=report.xml --timeout=1800 --durations=10
381381
needs:
382-
- compile
382+
- postbuild
383383
strategy:
384384
fail-fast: false
385385
matrix:
@@ -496,7 +496,7 @@ jobs:
496496
CFG: compile-gcc
497497
PYTEST_OPTS: -vvv --junit-xml=report.xml --timeout=1800 --durations=10 --test-group-random-seed=42
498498
needs:
499-
- compile
499+
- postbuild
500500
strategy:
501501
fail-fast: false
502502
matrix:
@@ -588,7 +588,7 @@ jobs:
588588
TEST_DEBUG: 1
589589
PYTEST_OPTS: -vvv --junit-xml=report.xml --timeout=1800 --durations=10 --test-group-random-seed=42
590590
needs:
591-
- compile
591+
- postbuild
592592
strategy:
593593
fail-fast: false
594594
matrix:

0 commit comments

Comments
 (0)