From 976b4ef2ec32c05b8fde171e4586a5eac6ff01c3 Mon Sep 17 00:00:00 2001 From: Deukhoofd Date: Thu, 6 Jun 2019 19:49:00 +0200 Subject: [PATCH] Test to see if environment variables handle everything properly --- .drone.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index d536067..8067a68 100644 --- a/.drone.yml +++ b/.drone.yml @@ -5,20 +5,20 @@ steps: - name: test-debug-linux image: dockcross/linux-x64 commands: - - cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_MAKE_PROGRAM=/usr/bin/make -DCMAKE_C_COMPILER=/usr/bin/gcc -DCMAKE_CXX_COMPILER=/usr/bin/g++ -G "CodeBlocks - Unix Makefiles" . -B build-debug + - cmake -DCMAKE_BUILD_TYPE=Debug . -B build-debug - cmake --build build-debug --target all -- -j 4 - build-debug/PorygonLangTests -s - name: test-release-linux image: dockcross/linux-x64 commands: - - cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_MAKE_PROGRAM=/usr/bin/make -DCMAKE_C_COMPILER=/usr/bin/gcc -DCMAKE_CXX_COMPILER=/usr/bin/g++ -G "CodeBlocks - Unix Makefiles" . -B build-release + - cmake -DCMAKE_BUILD_TYPE=Release . -B build-release - cmake --build build-release --target all -- -j 4 - build-release/PorygonLangTests -s - name: test-release-windows image: dockcross/windows-static-x64 commands: - - cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_MAKE_PROGRAM=/usr/bin/make -DCMAKE_C_COMPILER=/usr/bin/gcc -DCMAKE_CXX_COMPILER=/usr/bin/g++ -G "CodeBlocks - MinGW Makefiles" . -B build-release + - cmake -DCMAKE_BUILD_TYPE=Release . -B build-release - mingw32-make --build build-release --target all -- -j 4 - build-release/PorygonLangTests -s