Test to see if environment variables handle everything properly
continuous-integration/drone/push Build is failing
Details
continuous-integration/drone/push Build is failing
Details
This commit is contained in:
parent
2085334d0d
commit
976b4ef2ec
|
@ -5,20 +5,20 @@ steps:
|
||||||
- name: test-debug-linux
|
- name: test-debug-linux
|
||||||
image: dockcross/linux-x64
|
image: dockcross/linux-x64
|
||||||
commands:
|
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
|
- cmake --build build-debug --target all -- -j 4
|
||||||
- build-debug/PorygonLangTests -s
|
- build-debug/PorygonLangTests -s
|
||||||
|
|
||||||
- name: test-release-linux
|
- name: test-release-linux
|
||||||
image: dockcross/linux-x64
|
image: dockcross/linux-x64
|
||||||
commands:
|
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
|
- cmake --build build-release --target all -- -j 4
|
||||||
- build-release/PorygonLangTests -s
|
- build-release/PorygonLangTests -s
|
||||||
|
|
||||||
- name: test-release-windows
|
- name: test-release-windows
|
||||||
image: dockcross/windows-static-x64
|
image: dockcross/windows-static-x64
|
||||||
commands:
|
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
|
- mingw32-make --build build-release --target all -- -j 4
|
||||||
- build-release/PorygonLangTests -s
|
- build-release/PorygonLangTests -s
|
||||||
|
|
Loading…
Reference in New Issue