From 5deb479445064e3eb7a8cdacc009733e27e940da Mon Sep 17 00:00:00 2001 From: Daniel Wagner Date: Tue, 7 Apr 2026 17:31:02 +0200 Subject: [PATCH] build: reorder nightly build configuration The build script executes also the tests, thus the configuration needs to be written before the script is called. Fixes: 5c823c9c8b26 ("CI: update to nightly tests to use meson test framework") Signed-off-by: Daniel Wagner --- .github/workflows/run-nightly-tests.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/run-nightly-tests.yml b/.github/workflows/run-nightly-tests.yml index 0c47a178e1..cb629ab4e5 100644 --- a/.github/workflows/run-nightly-tests.yml +++ b/.github/workflows/run-nightly-tests.yml @@ -99,7 +99,6 @@ jobs: git config --global --add safe.directory /nvme-cli cd /nvme-cli git checkout ${{ github.sha }} - scripts/build.sh -b release -c gcc tests CONTROLLER=$(echo "${BDEV0}" | sed 's/n[0-9]*$//') cat > tests/config.json << EOJ { @@ -111,7 +110,7 @@ jobs: EOJ cat tests/config.json - meson tests -C .build-ci + scripts/build.sh -b release -c gcc tests EOF sudo chmod +x test.sh