|
75 | 75 | - name: Setup cmake |
76 | 76 | if: matrix.os == 'macos-latest' |
77 | 77 | uses: jwlawson/actions-setup-cmake@v1.13 |
| 78 | + with: |
| 79 | + cmake-version: '3.29.x' |
78 | 80 | - name: Cache .hunter folder |
79 | 81 | if: matrix.os != 'windows-latest' |
80 | 82 | uses: actions/cache@v3 |
@@ -136,6 +138,10 @@ jobs: |
136 | 138 | matrix: |
137 | 139 | rpi-os: [rpi-buster, rpi-bullseye, rpi-bookworm] |
138 | 140 | runs-on: ${{ matrix.rpi-os }} |
| 141 | + env: |
| 142 | + # workaround required for cache@v3, https://github.com/actions/cache/issues/1428 |
| 143 | + # to be removed when upgrading the manylinux image |
| 144 | + ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true |
139 | 145 | steps: |
140 | 146 | - name: Print home directory |
141 | 147 | run: echo Home directory inside container $HOME |
@@ -298,8 +304,12 @@ jobs: |
298 | 304 | build-linux-x86_64: |
299 | 305 | needs: build-docstrings |
300 | 306 | runs-on: ubuntu-latest |
| 307 | + env: |
| 308 | + # workaround required for cache@v3, https://github.com/actions/cache/issues/1428 |
| 309 | + # to be removed when upgrading the manylinux image |
| 310 | + ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true |
301 | 311 | container: |
302 | | - image: quay.io/pypa/manylinux2014_x86_64:2024-01-08-eb135ed |
| 312 | + image: quay.io/pypa/manylinux2014_x86_64:latest |
303 | 313 | env: |
304 | 314 | PLAT: manylinux2014_x86_64 |
305 | 315 | steps: |
@@ -362,8 +372,12 @@ jobs: |
362 | 372 | build-linux-arm64: |
363 | 373 | needs: build-docstrings |
364 | 374 | runs-on: [self-hosted, linux, ARM64] |
| 375 | + env: |
| 376 | + # workaround required for cache@v3, https://github.com/actions/cache/issues/1428 |
| 377 | + # to be removed when upgrading the manylinux image |
| 378 | + ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true |
365 | 379 | container: |
366 | | - image: quay.io/pypa/manylinux2014_aarch64:2024-01-08-eb135ed |
| 380 | + image: quay.io/pypa/manylinux2014_aarch64:latest |
367 | 381 | env: |
368 | 382 | PLAT: manylinux2014_aarch64 |
369 | 383 | # Mount local hunter cache directory, instead of transfering to Github and back |
|
0 commit comments