Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions .github/workflows/dist_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
steps:
- name: Cache LLVM
id: cache-llvm
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: llvm/install
# TODO: would be really better to add the hash of the LLVM commit cloned
Expand Down Expand Up @@ -48,11 +48,13 @@ jobs:
runs: ubuntu-24.04
- image: "manylinux_2_28_aarch64"
runs: ubuntu-24.04-arm
- image: "manylinux_2_31_armv7l"
runs: ubuntu-24.04-arm
runs-on: ${{ matrix.runs }}
steps:
- name: Cache LLVM
id: cache-llvm
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: llvm/install
key: ${{ runner.os }}-llvm-release-13-${{ matrix.image }}-00
Expand Down Expand Up @@ -82,6 +84,8 @@ jobs:
runs: ubuntu-24.04
- image: "manylinux_2_28_aarch64"
runs: ubuntu-24.04-arm
- image: "manylinux_2_31_armv7l"
runs: ubuntu-24.04-arm
py_vers:
- "cp38-cp38"
- "cp39-cp39"
Expand All @@ -101,7 +105,7 @@ jobs:
- uses: actions/checkout@v2
- name: Cache LLVM
id: cache-llvm
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: llvm/install
key: Linux-llvm-release-13-${{ matrix.tag.image }}-00
Expand Down Expand Up @@ -136,7 +140,7 @@ jobs:
- name: Cache LLVM
if: runner.os == 'Windows'
id: cache-llvm
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: llvm/install
key: ${{ runner.os }}-llvm-release-13-msvc
Expand Down
Loading