File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -157,24 +157,24 @@ jobs:
157
157
uses : actions/cache@v4
158
158
with :
159
159
path : |
160
- nasm-2.16.02
161
- nasm.zip
160
+ nasm-2.16.01
161
+ nasm-2.16.01-win64 .zip
162
162
key : ${{ runner.os }}-nasm-${{ matrix.build }}-v2
163
163
restore-keys : |
164
164
${{ runner.os }}-nasm-${{ matrix.build }}-
165
165
166
166
- name : Install dependencies on Windows
167
167
if : runner.os == 'Windows'
168
168
run : |
169
- if (Test-Path nasm-2.16.02 ) {
169
+ if (Test-Path nasm-2.16.01 ) {
170
170
echo "Using cached NASM"
171
171
} 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'
174
174
Invoke-WebRequest -Uri $nasmUrl -OutFile $nasmZip
175
175
Expand-Archive -Path $nasmZip -DestinationPath '.'
176
176
}
177
- echo "$(Resolve-Path nasm-2.16.02 )" >> $env:GITHUB_PATH
177
+ echo "$(Resolve-Path nasm-2.16.01 )" >> $env:GITHUB_PATH
178
178
179
179
- name : Install insta test runner
180
180
if : ${{ env.WITH_COVERAGE == 'false' && matrix.test != 'false' }}
You can’t perform that action at this time.
0 commit comments