From 69c0e6ee6eb5e0e400aa3955f0159cfb772f3a83 Mon Sep 17 00:00:00 2001 From: Thomas Date: Fri, 13 Jan 2023 00:32:17 +0100 Subject: [PATCH] git: Do not run `make install` for tests (#879) Co-authored-by: Nik --- .github/workflows/tests.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 58f4621a1..96d1cf058 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -48,14 +48,13 @@ jobs: cd build CC=gcc-12 CXX=g++-12 cmake \ -DCMAKE_BUILD_TYPE=Debug \ - -DCMAKE_INSTALL_PREFIX="$PWD/install" \ -DCMAKE_C_COMPILER_LAUNCHER=ccache \ -DCMAKE_CXX_COMPILER_LAUNCHER=ccache \ -DCMAKE_C_FLAGS="-fuse-ld=lld -fsanitize=address,leak,undefined -fno-sanitize-recover=all" \ -DCMAKE_CXX_FLAGS="-fuse-ld=lld -fsanitize=address,leak,undefined -fno-sanitize-recover=all" \ -DIMHEX_OFFLINE_BUILD=ON \ .. - make -j4 unit_tests install + make -j4 unit_tests - name: 🧪 Perform Unit Tests run: |