mirror of
https://github.com/gbdev/rgbds.git
synced 2026-09-15 10:17:06 +00:00
Avoid fetching external repos on 32-bit Cygwin
The comment says we aren't doing this, but we are
This commit is contained in:
@@ -387,6 +387,7 @@ jobs:
|
|||||||
type rgbasm rgblink rgbfix rgbgfx
|
type rgbasm rgblink rgbfix rgbgfx
|
||||||
man -w 1 rgbasm rgblink rgbfix rgbgfx
|
man -w 1 rgbasm rgblink rgbfix rgbgfx
|
||||||
- name: Compute test dependency cache params
|
- name: Compute test dependency cache params
|
||||||
|
if: matrix.arch == 'x86_64'
|
||||||
id: test-deps-cache-params
|
id: test-deps-cache-params
|
||||||
run: |
|
run: |
|
||||||
paths=$(test/external/fetch-repos.sh --get-paths)
|
paths=$(test/external/fetch-repos.sh --get-paths)
|
||||||
@@ -394,13 +395,14 @@ jobs:
|
|||||||
tee -a <<<"paths=\"${paths//,/\\n}\"" $GITHUB_OUTPUT
|
tee -a <<<"paths=\"${paths//,/\\n}\"" $GITHUB_OUTPUT
|
||||||
tee -a <<<"hash=${hash%-}" $GITHUB_OUTPUT
|
tee -a <<<"hash=${hash%-}" $GITHUB_OUTPUT
|
||||||
- name: Check test dependency repositories cache
|
- name: Check test dependency repositories cache
|
||||||
|
if: matrix.arch == 'x86_64'
|
||||||
id: test-deps-cache
|
id: test-deps-cache
|
||||||
uses: actions/cache@v5
|
uses: actions/cache@v5
|
||||||
with:
|
with:
|
||||||
path: ${{ fromJSON(steps.test-deps-cache-params.outputs.paths) }}
|
path: ${{ fromJSON(steps.test-deps-cache-params.outputs.paths) }}
|
||||||
key: cygwin-${{ matrix.bits }}-${{ steps.test-deps-cache-params.outputs.hash }}
|
key: cygwin-${{ matrix.bits }}-${{ steps.test-deps-cache-params.outputs.hash }}
|
||||||
- name: Fetch test dependency repositories
|
- 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
|
continue-on-error: true
|
||||||
run: |
|
run: |
|
||||||
test/external/fetch-repos.sh
|
test/external/fetch-repos.sh
|
||||||
|
|||||||
Reference in New Issue
Block a user