cicd: minor adjustments
This commit is contained in:
parent
a5e1712091
commit
0b3f88cd2c
14
.drone.yml
14
.drone.yml
|
@ -74,13 +74,8 @@ steps:
|
||||||
commands:
|
commands:
|
||||||
- . /opt/venv/bin/activate
|
- . /opt/venv/bin/activate
|
||||||
- rm -rvf ./build
|
- rm -rvf ./build
|
||||||
- export CC=$(which gcc)
|
|
||||||
- export CXX=$(which g++)
|
|
||||||
|
|
||||||
- conan install . --build=missing \
|
|
||||||
--profile:build=./tools/conan/profiles/linux_gcc_amd64 \
|
|
||||||
--profile:host=./tools/conan/profiles/linux_gcc_amd64
|
|
||||||
|
|
||||||
|
- conan install . --build=missing -pr='./tools/conan/profiles/linux_gcc_amd64'
|
||||||
- conan build .
|
- conan build .
|
||||||
|
|
||||||
- ./build/Release/modules/light/light
|
- ./build/Release/modules/light/light
|
||||||
|
@ -97,13 +92,8 @@ steps:
|
||||||
commands:
|
commands:
|
||||||
- . /opt/venv/bin/activate
|
- . /opt/venv/bin/activate
|
||||||
- rm -rvf ./build
|
- rm -rvf ./build
|
||||||
- export CC=$(which clang)
|
|
||||||
- export CXX=$(which clang++)
|
|
||||||
|
|
||||||
- conan install . --build=missing \
|
|
||||||
--profile:build=./tools/conan/profiles/linux_clang_amd64 \
|
|
||||||
--profile:host=./tools/conan/profiles/linux_clang_amd64
|
|
||||||
|
|
||||||
|
- conan install . --build=missing -pr='./tools/conan/profiles/linux_clang_amd64'
|
||||||
- conan build .
|
- conan build .
|
||||||
|
|
||||||
- ./build/Release/modules/light/light
|
- ./build/Release/modules/light/light
|
||||||
|
|
Loading…
Reference in New Issue