Skip to content
This repository has been archived by the owner on May 30, 2024. It is now read-only.

Commit

Permalink
uninstall clang on linux
Browse files Browse the repository at this point in the history
  • Loading branch information
ericLemanissier committed May 17, 2024
1 parent 1df8bf1 commit a8bcb1e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,13 @@ jobs:
- run: pip3 install conan yq

- name: set conan home
if: ${{ runner.os == 'Windows' }}
if: runner.os == 'Windows'
shell: bash
run: echo "CONAN_HOME=${{ runner.temp }}\\.c2" >> $GITHUB_ENV

- name: remove clang
if: runner.os == 'Linux'
run: sudo apt remove "clang-*"

- run: conan profile detect --force
shell: bash
Expand Down

0 comments on commit a8bcb1e

Please sign in to comment.