From 48652c7155196e8f148a435ae5a8ae4adb64cb58 Mon Sep 17 00:00:00 2001 From: Eric Wasylishen Date: Wed, 6 Oct 2021 17:23:10 -0600 Subject: [PATCH] CI: add bspinfo/bsputil to PATH before running regression tests --- build-appveyor.ps1 | 2 +- build-linux-64.sh | 6 +++++- build-osx.sh | 6 +++++- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/build-appveyor.ps1 b/build-appveyor.ps1 index 8183374b..19a3ebe0 100644 --- a/build-appveyor.ps1 +++ b/build-appveyor.ps1 @@ -43,7 +43,7 @@ if ( $? -eq $false ) { throw "testqbsp failed" } -$env:Path += ";$(pwd)\qbsp\Release;$(pwd)\vis\Release;$(pwd)\light\Release" +$env:Path += ";$(pwd)\qbsp\Release;$(pwd)\vis\Release;$(pwd)\light\Release;$(pwd)\bspinfo\Release;$(pwd)\bsputil\Release" cd ..\testmaps diff --git a/build-linux-64.sh b/build-linux-64.sh index c0879f74..837501dd 100755 --- a/build-linux-64.sh +++ b/build-linux-64.sh @@ -37,6 +37,10 @@ readelf -d ./ericw-tools-*/bin/light # run regression tests cd .. -export PATH="$(pwd)/$BUILD_DIR/qbsp:$(pwd)/$BUILD_DIR/light:$(pwd)/$BUILD_DIR/vis:$PATH" +export PATH="$(pwd)/$BUILD_DIR/qbsp:$PATH" +export PATH="$(pwd)/$BUILD_DIR/vis:$PATH" +export PATH="$(pwd)/$BUILD_DIR/light:$PATH" +export PATH="$(pwd)/$BUILD_DIR/bspinfo:$PATH" +export PATH="$(pwd)/$BUILD_DIR/bsputil:$PATH" cd testmaps ./automatated_tests.sh || exit 1 diff --git a/build-osx.sh b/build-osx.sh index 87bb5ada..37505e9e 100755 --- a/build-osx.sh +++ b/build-osx.sh @@ -51,6 +51,10 @@ otool -L ./bsputil/bsputil # run regression tests cd .. -export PATH="$(pwd)/$BUILD_DIR/qbsp:$(pwd)/$BUILD_DIR/light:$(pwd)/$BUILD_DIR/vis:$PATH" +export PATH="$(pwd)/$BUILD_DIR/qbsp:$PATH" +export PATH="$(pwd)/$BUILD_DIR/vis:$PATH" +export PATH="$(pwd)/$BUILD_DIR/light:$PATH" +export PATH="$(pwd)/$BUILD_DIR/bspinfo:$PATH" +export PATH="$(pwd)/$BUILD_DIR/bsputil:$PATH" cd testmaps ./automatated_tests.sh || exit 1