diff options
| author | Felix Morgner <felix.morgner@ost.ch> | 2026-07-26 22:27:12 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@ost.ch> | 2026-07-26 22:27:12 +0200 |
| commit | fdaa4d2e5f29c39c8cafa8604a9a580b92d81c57 (patch) | |
| tree | ca9392dfc5ed0343d42a9b5c2f6114768f41d1cd | |
| parent | deb424974a9abc21566684b89c213bfeccc75780 (diff) | |
| download | kernel-fdaa4d2e5f29c39c8cafa8604a9a580b92d81c57.tar.xz kernel-fdaa4d2e5f29c39c8cafa8604a9a580b92d81c57.zip | |
ci: fix job dependencies
| -rw-r--r-- | .gitlab-ci.yml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 96e6c416..f148546d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -42,7 +42,6 @@ build:bootable: test:bht: stage: test image: registry.gitlab.ost.ch:45023/teachos/devcontainers/bht.ci:latest - needs: ["build:$PRESET"] script: - ctest --preset $PRESET-dbg --parallel --output-on-failure - lcov --quiet --config-file .lcovrc --capture --directory $(pwd) --output-file coverage.info @@ -64,6 +63,11 @@ test:bht: parallel: matrix: - PRESET: ["bht", "bht-tsan"] + needs: + - job: build:bht + parallel: + matrix: + - PRESET: ['$[[ matrix.PRESET ]]'] license_check: stage: .pre |
