From a4d5b947219b13bea51ce3417d714f075a1e8de9 Mon Sep 17 00:00:00 2001 From: light7734 Date: Mon, 14 Oct 2024 23:23:19 +0330 Subject: [PATCH] cicd: minor adjustments --- .drone.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) 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