Skip to content

Commit cf96289

Browse files
will-osborneclaude
andcommitted
Fix CI: apt-get update before cross-compiler install
Stale package lists on GitHub's Ubuntu runners cause 404 errors when fetching gcc-14-cross dependencies. Update first to get fresh metadata. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent e74eade commit cf96289

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,9 @@ jobs:
7676
7777
- name: Install cross-compiler and cmake (Linux ARM64)
7878
if: matrix.goos == 'linux' && matrix.goarch == 'arm64'
79-
run: sudo apt-get install -y gcc-aarch64-linux-gnu g++-aarch64-linux-gnu cmake
79+
run: |
80+
sudo apt-get update
81+
sudo apt-get install -y gcc-aarch64-linux-gnu g++-aarch64-linux-gnu cmake
8082
8183
- name: Build whisper-cpp from source (Linux AMD64)
8284
if: matrix.goos == 'linux' && matrix.goarch == 'amd64'

0 commit comments

Comments
 (0)