diff options
| author | Dragorn421 <Dragorn421@users.noreply.github.com> | 2026-05-11 06:52:09 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-05-11 04:52:09 +0000 |
| commit | 4834ec2b6913a109bca9a2249715ab08f0f6ad42 (patch) | |
| tree | 1cdc7547dab2d5d00b268e2a66f9e5919a9ed234 | |
| parent | b6f85845977033c2b6594a0f0ce89afb02c8f62a (diff) | |
GHA: Compiler archives from runner image instead of download (#2757)
| -rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4fe6557b7..b9dbd507c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,6 +48,10 @@ jobs: - name: Get the dependency run: ln -s /orig/${{ matrix.version }}/baserom.z64 baseroms/${{ matrix.version }}/baserom.z64 + # The compiler archives are embedded in the runner image, to avoid downloading them from GitHub (during make setup), which occasionally fails. + - name: Provide compiler archives + run: ln -s /compiler_archives tools/compiler_archives/archives + - name: Setup run: make -j $(nproc) VERSION=${{ matrix.version }} setup |
