diff options
-rw-r--r-- | .github/workflows/linux.yml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 9f1ebbf1e1b..1ab5c5ceb49 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -124,10 +124,11 @@ jobs: run: | git switch --detach git reset --hard FETCH_HEAD - - - name: Set LIBCLANG_PATH env # needed for bindgen in mozangle - if: ${{ runner.environment != 'self-hosted' && !inputs.upload }} # not needed on ubuntu 20.04 used for nightly - run: echo "LIBCLANG_PATH=/usr/lib/llvm-14/lib" >> $GITHUB_ENV + - name: Install LLVM and Clang + if: ${{ runner.environment != 'self-hosted' }} + uses: KyleMayes/install-llvm-action@v2 + with: + version: 14 - name: Setup Python if: ${{ runner.environment != 'self-hosted' }} uses: ./.github/actions/setup-python |