cicd: minor adjustments
This commit is contained in:
parent
076d91adbe
commit
a4d5b94721
10
.drone.yml
10
.drone.yml
|
@ -76,9 +76,10 @@ steps:
|
||||||
- rm -rvf ./build
|
- rm -rvf ./build
|
||||||
- export CC=$(which gcc)
|
- export CC=$(which gcc)
|
||||||
- export CXX=$(which g++)
|
- export CXX=$(which g++)
|
||||||
|
- export CONAN_PROFILE='./tools/conan/profiles/linux_gcc_amd64'
|
||||||
|
|
||||||
- conan install . --build=missing -pr='./tools/conan/profiles/linux_gcc_amd64'
|
- conan install . --build=missing -pr=${CONAN_PROFILE}
|
||||||
- conan build . -pr='./tools/conan/profiles/linux_gcc_amd64'
|
- conan build . -pr=${CONAN_PROFILE}
|
||||||
|
|
||||||
- ./build/Release/modules/light/light
|
- ./build/Release/modules/light/light
|
||||||
|
|
||||||
|
@ -96,9 +97,10 @@ steps:
|
||||||
- rm -rvf ./build
|
- rm -rvf ./build
|
||||||
- export CC=$(which clang)
|
- export CC=$(which clang)
|
||||||
- export CXX=$(which clang++)
|
- export CXX=$(which clang++)
|
||||||
|
- export CONAN_PROFILE='./tools/conan/profiles/linux_clang_amd64'
|
||||||
|
|
||||||
- conan install . --build=missing -pr='./tools/conan/profiles/linux_clang_amd64'
|
- conan install . --build=missing -pr=${CONAN_PROFILE}
|
||||||
- conan build . -pr='./tools/conan/profiles/linux_clang_amd64'
|
- conan build . -pr=${CONAN_PROFILE}
|
||||||
|
|
||||||
- ./build/Release/modules/light/light
|
- ./build/Release/modules/light/light
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue