From 81a38bde8cc0359efc32f2661fa5e4db33b38446 Mon Sep 17 00:00:00 2001 From: Mukilan Thiyagarajan Date: Tue, 28 Nov 2023 15:19:17 +0530 Subject: [PATCH] ci: do not set LIBCLANG_PATH for nightly build (#30792) This environment variable was added when we moved to Ubuntu 22.04 and it is not needed for nightly builds which we have now switched to 20.04 Signed-off-by: Mukilan Thiyagarajan --- .github/workflows/linux.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 0304af6f0bf..751ec6fcabe 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -80,6 +80,7 @@ jobs: - name: Run sccache-cache uses: mozilla-actions/sccache-action@v0.0.3 - name: Set LIBCLANG_PATH env # needed for bindgen in mozangle + if: ${{ !inputs.upload }} # not needed on ubuntu 20.04 used for nightly run: echo "LIBCLANG_PATH=/usr/lib/llvm-14/lib" >> $GITHUB_ENV - name: Install taplo uses: baptiste0928/cargo-install@v2