diff --git a/.github/workflows/build-linux.yml b/.github/workflows/build-linux.yml index 1671f1b..a650575 100644 --- a/.github/workflows/build-linux.yml +++ b/.github/workflows/build-linux.yml @@ -75,21 +75,20 @@ jobs: CC: ${{ matrix.compiler }} working-directory: ${{ runner.temp }} - name: Remove old LLVM 12 plugins - if: matrix.compiler != 'clang-12' run: | - sudo apt purge llvm-12-linker-tools + sudo apt purge llvm-12-linker-tools || true - name: Remove old LLVM 13 plugins if: matrix.compiler != 'clang-13' run: | - sudo apt purge llvm-13-linker-tools + sudo apt purge llvm-13-linker-tools || true - name: Remove old LLVM 14 plugins if: matrix.compiler != 'clang-14' run: | - sudo apt purge llvm-14-linker-tools + sudo apt purge llvm-14-linker-tools || true - name: Remove old LLVM 15 plugins if: matrix.compiler != 'clang-15' run: | - sudo apt purge llvm-15-linker-tools + sudo apt purge llvm-15-linker-tools || true - name: Install dependencies shell: bash run: sudo apt-get install libudev-dev