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:
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' }}
You can’t perform that action at this time.
0 commit comments