Avoid fetching external repos on 32-bit Cygwin

The comment says we aren't doing this, but we are
This commit is contained in:
ISSOtm
2026-09-03 13:39:24 +02:00
committed by Eldred Habert
parent bf3ab7cb18
commit a0ab1802ff
+3 -1
View File
@@ -387,6 +387,7 @@ jobs:
type rgbasm rgblink rgbfix rgbgfx
man -w 1 rgbasm rgblink rgbfix rgbgfx
- name: Compute test dependency cache params
if: matrix.arch == 'x86_64'
id: test-deps-cache-params
run: |
paths=$(test/external/fetch-repos.sh --get-paths)
@@ -394,13 +395,14 @@ jobs:
tee -a <<<"paths=\"${paths//,/\\n}\"" $GITHUB_OUTPUT
tee -a <<<"hash=${hash%-}" $GITHUB_OUTPUT
- name: Check test dependency repositories cache
if: matrix.arch == 'x86_64'
id: test-deps-cache
uses: actions/cache@v5
with:
path: ${{ fromJSON(steps.test-deps-cache-params.outputs.paths) }}
key: cygwin-${{ matrix.bits }}-${{ steps.test-deps-cache-params.outputs.hash }}
- name: Fetch test dependency repositories
if: steps.test-deps-cache.outputs.cache-hit != 'true'
if: matrix.arch == 'x86_64' && steps.test-deps-cache.outputs.cache-hit != 'true'
continue-on-error: true
run: |
test/external/fetch-repos.sh