diff --git a/.drone.yml b/.drone.yml index 6d28e6c..4b240e0 100644 --- a/.drone.yml +++ b/.drone.yml @@ -76,9 +76,10 @@ steps: - rm -rvf ./build - export CC=$(which gcc) - 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 build . -pr='./tools/conan/profiles/linux_gcc_amd64' + - conan install . --build=missing -pr=${CONAN_PROFILE} + - conan build . -pr=${CONAN_PROFILE} - ./build/Release/modules/light/light @@ -96,9 +97,10 @@ steps: - rm -rvf ./build - export CC=$(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 build . -pr='./tools/conan/profiles/linux_clang_amd64' + - conan install . --build=missing -pr=${CONAN_PROFILE} + - conan build . -pr=${CONAN_PROFILE} - ./build/Release/modules/light/light