Skip to content

Commit 7c5f07d

Browse files
fix(ci): update NASM download URL to use GitHub link (#3362)
1 parent b076af5 commit 7c5f07d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -157,24 +157,24 @@ jobs:
157157
uses: actions/cache@v4
158158
with:
159159
path: |
160-
nasm-2.16.02
161-
nasm.zip
160+
nasm-2.16.01
161+
nasm-2.16.01-win64.zip
162162
key: ${{ runner.os }}-nasm-${{ matrix.build }}-v2
163163
restore-keys: |
164164
${{ runner.os }}-nasm-${{ matrix.build }}-
165165
166166
- name: Install dependencies on Windows
167167
if: runner.os == 'Windows'
168168
run: |
169-
if (Test-Path nasm-2.16.02) {
169+
if (Test-Path nasm-2.16.01) {
170170
echo "Using cached NASM"
171171
} else {
172-
$nasmUrl = 'https://www.nasm.us/pub/nasm/releasebuilds/2.16.02/win64/nasm-2.16.02-win64.zip'
173-
$nasmZip = 'nasm.zip'
172+
$nasmUrl = 'https://github.com/microsoft/vcpkg/files/12073957/nasm-2.16.01-win64.zip'
173+
$nasmZip = 'nasm-2.16.01-win64.zip'
174174
Invoke-WebRequest -Uri $nasmUrl -OutFile $nasmZip
175175
Expand-Archive -Path $nasmZip -DestinationPath '.'
176176
}
177-
echo "$(Resolve-Path nasm-2.16.02)" >> $env:GITHUB_PATH
177+
echo "$(Resolve-Path nasm-2.16.01)" >> $env:GITHUB_PATH
178178
179179
- name: Install insta test runner
180180
if: ${{ env.WITH_COVERAGE == 'false' && matrix.test != 'false' }}

0 commit comments

Comments
 (0)