We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 513c1fa commit 593cdc4Copy full SHA for 593cdc4
.github/workflows/ci.yml
@@ -107,6 +107,13 @@ jobs:
107
# for miniupnp that runs "wingenminiupnpcstrings.exe" from the current dir
108
echo "." >> $GITHUB_PATH
109
110
+ - name: Install nasm (Windows)
111
+ if: runner.os == 'Windows'
112
+ shell: pwsh
113
+ run: |
114
+ choco install nasm --no-progress -y
115
+ "C:\Program Files\NASM" | Out-File -FilePath $Env:GITHUB_PATH -Encoding utf8 -Append
116
+
117
- name: Derive environment variables
118
run: |
119
if [[ '${{ matrix.target.cpu }}' == 'amd64' ]]; then
0 commit comments