cicd: fix env variable expression
continuous-integration/drone Build is failing
Details
continuous-integration/drone Build is failing
Details
This commit is contained in:
parent
f476df177c
commit
3663923a64
|
@ -78,8 +78,8 @@ steps:
|
||||||
- export CXX=$(which g++)
|
- export CXX=$(which g++)
|
||||||
- export CONAN_PROFILE="$(pwd)/tools/conan/profiles/linux_gcc_amd64"
|
- export CONAN_PROFILE="$(pwd)/tools/conan/profiles/linux_gcc_amd64"
|
||||||
|
|
||||||
- conan install . --build=missing -pr=${CONAN_PROFILE}
|
- conan install . --build=missing -pr=$$CONAN_PROFILE
|
||||||
- conan build . -pr=${CONAN_PROFILE}
|
- conan build . -pr=$$CONAN_PROFILE
|
||||||
|
|
||||||
- ./build/Release/modules/light/light
|
- ./build/Release/modules/light/light
|
||||||
|
|
||||||
|
@ -99,8 +99,8 @@ steps:
|
||||||
- export CXX=$(which clang++)
|
- export CXX=$(which clang++)
|
||||||
- export CONAN_PROFILE="$(pwd)/tools/conan/profiles/linux_gcc_amd64"
|
- export CONAN_PROFILE="$(pwd)/tools/conan/profiles/linux_gcc_amd64"
|
||||||
|
|
||||||
- conan install . --build=missing -pr=${CONAN_PROFILE}
|
- conan install . --build=missing -pr=$$CONAN_PROFILE
|
||||||
- conan build . -pr=${CONAN_PROFILE}
|
- conan build . -pr=$$CONAN_PROFILE
|
||||||
|
|
||||||
- ./build/Release/modules/light/light
|
- ./build/Release/modules/light/light
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue