From a8bcb1e053929924ac8986612cc09fae4012b9a7 Mon Sep 17 00:00:00 2001 From: ericLemanissier Date: Fri, 17 May 2024 10:41:49 +0200 Subject: [PATCH] uninstall clang on linux --- .github/workflows/build-pr.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-pr.yml b/.github/workflows/build-pr.yml index 6597cd7..4f4365d 100644 --- a/.github/workflows/build-pr.yml +++ b/.github/workflows/build-pr.yml @@ -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