From cc5511c09427c13a8e3c4be2b71ca14bf95ed438 Mon Sep 17 00:00:00 2001 From: Jason Ish Date: Fri, 9 May 2025 10:26:00 -0600 Subject: [PATCH] github-ci: use current directory for unit test logging /tmp appears to exist when you make it, but doesn't appear to actually exist after msys translation, so just use "." (cherry picked from commit 11cef2980be3626153c82ebe3a2ca7485651dcd2) --- .github/workflows/builds.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml index 155ecc12b7..662b1bf663 100644 --- a/.github/workflows/builds.yml +++ b/.github/workflows/builds.yml @@ -2405,7 +2405,7 @@ jobs: - name: Run run: | ./src/suricata --build-info - ./src/suricata -u -l /tmp/ + ./src/suricata -u -l . # need cwd in path due to npcap dlls (see above) PATH="$PATH:$(pwd)" python3 ./suricata-verify/run.py -q --debug-failed - run: make install @@ -2450,7 +2450,7 @@ jobs: - name: Run run: | ./src/suricata --build-info - ./src/suricata -u -l /tmp/ + ./src/suricata -u -l . python3 ./suricata-verify/run.py -q --debug-failed - run: make install - run: suricata-update -V -- 2.47.2