cicd: minor adjustments

This commit is contained in:
light7734 2024-10-14 23:23:19 +03:30
parent 076d91adbe
commit a4d5b94721
Signed by: light7734
GPG Key ID: 37FDF7099B2AB7A7
1 changed files with 6 additions and 4 deletions

View File

@ -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