From 069320318e510a866405cfdd0e83bbd7e8dad5a4 Mon Sep 17 00:00:00 2001 From: Deukhoofd Date: Sat, 5 Feb 2022 15:46:11 +0100 Subject: [PATCH] Fixes build --- .drone.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index 5894f36..229d03b 100644 --- a/.drone.yml +++ b/.drone.yml @@ -12,7 +12,7 @@ steps: CMAKE_RANLIB: /usr/bin/llvm-ranlib CMAKE_AR: /usr/bin/llvm-ar commands: - - cmake -GNinja -DCMAKE_BUILD_TYPE=Debug . -B build-debug -DSTATICC=ON -DTESTS=ON + - cmake -GNinja -DCMAKE_BUILD_TYPE=Debug . -B build-debug -DSTATICC=ON -DARBUTILS_TESTS=ON - cmake --build build-debug --target all -- -j 4 - cd build-debug - ./ArbutilsTests -s --duration=true --force-colors=true @@ -24,7 +24,7 @@ steps: CMAKE_RANLIB: /usr/bin/llvm-ranlib CMAKE_AR: /usr/bin/llvm-ar commands: - - cmake -GNinja -DCMAKE_BUILD_TYPE=Release . -B build-release -DSTATICC=ON -DTESTS=ON + - cmake -GNinja -DCMAKE_BUILD_TYPE=Release . -B build-release -DSTATICC=ON -DARBUTILS_TESTS=ON - cmake --build build-release --target all -- -j 4 - cd build-debug - ./ArbutilsTests -s --duration=true --force-colors=true @@ -32,7 +32,7 @@ steps: - name: test-release-windows image: deukhoofd/windowsbuilder commands: - - cmake -GNinja -DCMAKE_BUILD_TYPE=Release . -B build-release-windows -D CMAKE_C_COMPILER=/usr/bin/x86_64-w64-mingw32-gcc -D CMAKE_CXX_COMPILER=x86_64-w64-mingw32-g++ -DWINDOWS=ON -DSTATICC=ON -DTESTS=ON + - cmake -GNinja -DCMAKE_BUILD_TYPE=Release . -B build-release-windows -D CMAKE_C_COMPILER=/usr/bin/x86_64-w64-mingw32-gcc -D CMAKE_CXX_COMPILER=x86_64-w64-mingw32-g++ -DWINDOWS=ON -DSTATICC=ON -DARBUTILS_TESTS=ON - cmake --build build-release-windows --target all -- -j 4 - export WINEARCH=win64 - wine build-release-windows/ArbutilsTests.exe -s --duration=true --force-colors=true --test-case-exclude="Throw exception get stack trace"