From 22a20bec1bc1ddce4533c57d2efa94a9a6e0b08b Mon Sep 17 00:00:00 2001 From: Anton Baliasnikov Date: Wed, 11 Sep 2024 13:23:12 +0100 Subject: [PATCH] fix: update builder to correctly use python version (#30) --- .github/actions/build-llvm/action.yml | 2 +- .github/actions/prepare-msys/action.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/build-llvm/action.yml b/.github/actions/build-llvm/action.yml index f43e126..b492fb1 100644 --- a/.github/actions/build-llvm/action.yml +++ b/.github/actions/build-llvm/action.yml @@ -51,7 +51,7 @@ inputs: llvm-builder-version: description: 'Version of the LLVM builder to use.' required: false - default: '1.0.33' + default: '1.0.34' ccache-key: description: 'Github Actions cache key for CCache.' required: false diff --git a/.github/actions/prepare-msys/action.yml b/.github/actions/prepare-msys/action.yml index 046701e..8126540 100644 --- a/.github/actions/prepare-msys/action.yml +++ b/.github/actions/prepare-msys/action.yml @@ -6,7 +6,7 @@ runs: - name: Setup msys2 uses: msys2/setup-msys2@v2 with: - path-type: strict # Important to correctly update PATH + path-type: inherit # Important to correctly update PATH install: >- base-devel git @@ -23,4 +23,4 @@ runs: - name: Prepare env shell: 'msys2 {0}' run: | - echo "export PATH=/c/Users/runneradmin/.cargo/bin:/mingw64/bin:/usr/bin:/usr/local/bin" >> ${HOME}/.bash_profile + echo "export PATH=/c/Users/runneradmin/.cargo/bin:/mingw64/bin:${PATH}" >> ${HOME}/.bash_profile