Skip to content

Commit

Permalink
Install conan before ci
Browse files Browse the repository at this point in the history
  • Loading branch information
hit9 committed Apr 29, 2024
1 parent 4984cea commit b79ba39
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,19 @@ jobs:
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-13 100
g++ -v
- name: Install Conan
run: pip install conan

- name: Configure Conan
run: conan profile detect

- name: Install Requirements
run: >
conan install .
--output-folder=${{ runner.workspace }}/build
--build=missing -s compiler.cppstd=20
-s build_type=${{ matrix.build_type }}
- name: Create Build Environment
run: cmake -E make_directory ${{runner.workspace}}/build

Expand Down

0 comments on commit b79ba39

Please sign in to comment.