Skip to content

Commit

Permalink
fix: update builder to correctly use python version (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
antonbaliasnikov authored Sep 11, 2024
1 parent 4e8536a commit 22a20be
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/actions/build-llvm/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/actions/prepare-msys/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

0 comments on commit 22a20be

Please sign in to comment.