Skip to content

Commit

Permalink
fix testing
Browse files Browse the repository at this point in the history
  • Loading branch information
liss-h committed Mar 25, 2024
1 parent d0088a0 commit 0f9683b
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/code_testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,23 @@ jobs:
- name: Install linker
uses: rui314/setup-mold@v1

- name: Install conan and fix config
shell: bash
run: |
pip3 install conan==1.62.0
conan profile new --detect default
conan profile update env.CXX="${CXX}" default
conan profile update env.CC="${CC}" default
conan profile update settings.compiler.libcxx=libstdc++11 default
conan remote add dice-group https://conan.dice-research.org/artifactory/api/conan/tentris
conan remote add tentris-private https://conan.dice-research.org/artifactory/api/conan/tentris-private
conan user -p "$CONAN_PW" -r tentris-private "$CONAN_USER"
env:
CONAN_PW: ${{ secrets.CONAN_PW }}
CONAN_USER: ${{ secrets.CONAN_USER }}
CC: ${{ steps.install_cc.outputs.cc }}
CXX: ${{ steps.install_cc.outputs.cxx }}

- uses: actions/checkout@v3

- name: Configure CMake
Expand Down

0 comments on commit 0f9683b

Please sign in to comment.