cicd: revert some adjustment

This commit is contained in:
light7734 2024-10-14 23:18:30 +03:30
parent 0b3f88cd2c
commit 63f0983274
Signed by: light7734
GPG Key ID: 37FDF7099B2AB7A7
1 changed files with 4 additions and 0 deletions

View File

@ -74,6 +74,8 @@ steps:
commands: commands:
- . /opt/venv/bin/activate - . /opt/venv/bin/activate
- rm -rvf ./build - rm -rvf ./build
- export CC=$(which gcc)
- export CXX=$(which g++)
- conan install . --build=missing -pr='./tools/conan/profiles/linux_gcc_amd64' - conan install . --build=missing -pr='./tools/conan/profiles/linux_gcc_amd64'
- conan build . - conan build .
@ -92,6 +94,8 @@ steps:
commands: commands:
- . /opt/venv/bin/activate - . /opt/venv/bin/activate
- rm -rvf ./build - rm -rvf ./build
- export CC=$(which clang)
- export CXX=$(which clang++)
- conan install . --build=missing -pr='./tools/conan/profiles/linux_clang_amd64' - conan install . --build=missing -pr='./tools/conan/profiles/linux_clang_amd64'
- conan build . - conan build .