Updates for new Windows CI
continuous-integration/drone/push Build is failing
Details
continuous-integration/drone/push Build is failing
Details
Signed-off-by: Deukhoofd <Deukhoofd@gmail.com>
This commit is contained in:
parent
a361716233
commit
1b08dbc365
17
.drone.yml
17
.drone.yml
|
@ -3,8 +3,6 @@ kind: pipeline
|
||||||
name: default
|
name: default
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
- name: conan-data
|
|
||||||
temp: { }
|
|
||||||
- name: docs
|
- name: docs
|
||||||
host:
|
host:
|
||||||
path: /home/docs/CreatureLib
|
path: /home/docs/CreatureLib
|
||||||
|
@ -13,27 +11,19 @@ type: docker
|
||||||
steps:
|
steps:
|
||||||
- name: test-debug-linux
|
- name: test-debug-linux
|
||||||
image: deukhoofd/linux64builder
|
image: deukhoofd/linux64builder
|
||||||
volumes:
|
|
||||||
- name: conan-data
|
|
||||||
path: /root/.conan/data
|
|
||||||
environment:
|
environment:
|
||||||
CC: /usr/bin/clang
|
CC: /usr/bin/clang
|
||||||
CXX: /usr/bin/clang++
|
CXX: /usr/bin/clang++
|
||||||
commands:
|
commands:
|
||||||
- conan remote add epsilon-public https://packages.p-epsilon.com/
|
|
||||||
- cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_C_COMPILER=/usr/bin/clang -DCMAKE_CXX_COMPILER=/usr/bin/clang++ . -B build-debug -DSTATICC=ON -DTESTS=ON
|
- cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_C_COMPILER=/usr/bin/clang -DCMAKE_CXX_COMPILER=/usr/bin/clang++ . -B build-debug -DSTATICC=ON -DTESTS=ON
|
||||||
- cmake --build build-debug --target all -- -j 4
|
- cmake --build build-debug --target all -- -j 4
|
||||||
- build-debug/CreatureLibTests -s --duration=true --force-colors=true
|
- build-debug/CreatureLibTests -s --duration=true --force-colors=true
|
||||||
- name: test-release-linux
|
- name: test-release-linux
|
||||||
image: deukhoofd/linux64builder
|
image: deukhoofd/linux64builder
|
||||||
volumes:
|
|
||||||
- name: conan-data
|
|
||||||
path: /root/.conan/data
|
|
||||||
environment:
|
environment:
|
||||||
CC: /usr/bin/clang
|
CC: /usr/bin/clang
|
||||||
CXX: /usr/bin/clang++
|
CXX: /usr/bin/clang++
|
||||||
commands:
|
commands:
|
||||||
- conan remote add epsilon-public https://packages.p-epsilon.com/
|
|
||||||
- cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=/usr/bin/clang -DCMAKE_CXX_COMPILER=/usr/bin/clang++ . -B build-release -DSTATICC=ON -DTESTS=ON
|
- cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=/usr/bin/clang -DCMAKE_CXX_COMPILER=/usr/bin/clang++ . -B build-release -DSTATICC=ON -DTESTS=ON
|
||||||
- cmake --build build-release --target all -- -j 4
|
- cmake --build build-release --target all -- -j 4
|
||||||
- build-release/CreatureLibTests -s --duration=true --force-colors=true
|
- build-release/CreatureLibTests -s --duration=true --force-colors=true
|
||||||
|
@ -46,11 +36,6 @@ steps:
|
||||||
environment:
|
environment:
|
||||||
CONAN_ENV_COMPILER_VERSION: 9.3
|
CONAN_ENV_COMPILER_VERSION: 9.3
|
||||||
commands:
|
commands:
|
||||||
- conan remote add epsilon-public https://packages.p-epsilon.com/
|
|
||||||
- update-alternatives --set i686-w64-mingw32-gcc /usr/bin/i686-w64-mingw32-gcc-posix
|
|
||||||
- update-alternatives --set i686-w64-mingw32-g++ /usr/bin/i686-w64-mingw32-g++-posix
|
|
||||||
- update-alternatives --set x86_64-w64-mingw32-gcc /usr/bin/x86_64-w64-mingw32-gcc-posix
|
|
||||||
- update-alternatives --set x86_64-w64-mingw32-g++ /usr/bin/x86_64-w64-mingw32-g++-posix
|
|
||||||
- cmake -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 -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 --build build-release-windows --target all -- -j 4
|
- cmake --build build-release-windows --target all -- -j 4
|
||||||
- export WINEARCH=win64
|
- export WINEARCH=win64
|
||||||
|
@ -74,6 +59,6 @@ steps:
|
||||||
- ( cat Doxyfile ; echo "OUTPUT_DIRECTORY=/docs"; echo "GENERATE_TAGFILE=/docs/html/CreatureLib.tag" ) | doxygen -
|
- ( cat Doxyfile ; echo "OUTPUT_DIRECTORY=/docs"; echo "GENERATE_TAGFILE=/docs/html/CreatureLib.tag" ) | doxygen -
|
||||||
---
|
---
|
||||||
kind: signature
|
kind: signature
|
||||||
hmac: b2f1540b00f641eef3a388ecde2217fca4b036beefaeeff47caaee834092f134
|
hmac: 65b47dc220872026c108c3bb2878a81f8fb4a4c232e288ee496e96e398fe0cc0
|
||||||
|
|
||||||
...
|
...
|
||||||
|
|
Loading…
Reference in New Issue