Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ananthu3375 authored Jun 19, 2024
1 parent 80a5acb commit 3b85dc5
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,16 @@ jobs:
sudo apt install -y flex bison graphviz dia mscgen pdf2svg texlive texlive-lang-german texlive-latex-extra ghostscript
- name: Cleanup Conan system packages (they are not properly cached)
run: |
conan remove -f '*/system/*'
conan remove -f '*/system/*' || true
- name: Installing conan
run: |
pip install conan
- name: Checking conan version
run: |
conan --version
- name: Create default conan profile
run: |
conan profile detect
- name: Installing conan dependencies
run: |
conan install . --build=missing -s build_type=Release
Expand Down Expand Up @@ -182,7 +191,16 @@ jobs:
- name: Cleanup Conan system packages (they are not properly cached)
run: |
conan remove -f '*/system/*'
conan remove -f '*/system/*' || true
- name: Installing conan
run: |
pip install conan
- name: Checking conan version
run: |
conan --version
- name: Create default conan profile
run: |
conan profile detect
- name: Installing conan dependencies
run: |
conan install . --build=missing -s build_type=${{matrix.build_type}}
Expand Down

0 comments on commit 3b85dc5

Please sign in to comment.