Skip to content

Commit 5deb479

Browse files
committed
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: 5c823c9 ("CI: update to nightly tests to use meson test framework") Signed-off-by: Daniel Wagner <[email protected]>
1 parent 28284c1 commit 5deb479

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

.github/workflows/run-nightly-tests.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,6 @@ jobs:
9999
git config --global --add safe.directory /nvme-cli
100100
cd /nvme-cli
101101
git checkout ${{ github.sha }}
102-
scripts/build.sh -b release -c gcc tests
103102
CONTROLLER=$(echo "${BDEV0}" | sed 's/n[0-9]*$//')
104103
cat > tests/config.json << EOJ
105104
{
@@ -111,7 +110,7 @@ jobs:
111110
EOJ
112111
cat tests/config.json
113112
114-
meson tests -C .build-ci
113+
scripts/build.sh -b release -c gcc tests
115114
EOF
116115
117116
sudo chmod +x test.sh

0 commit comments

Comments
 (0)