File tree Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -296,11 +296,16 @@ jobs:
296296 toolchain : stable
297297 - name : Set Rust toolchain override
298298 run : rustup override set ${{ steps.toolchain.outputs.name }}
299+ - name : Remove NASM
300+ shell : bash
301+ run : |
302+ rm -f `which nasm`
299303 - name : Verify NASM not available
300304 shell : bash
301305 run : |
302306 if nasm --version; then
303- exit 1
307+ echo `which nasm`
308+ exit 1
304309 else
305310 exit 0;
306311 fi
Original file line number Diff line number Diff line change @@ -217,11 +217,16 @@ jobs:
217217 with :
218218 submodules : ' recursive'
219219 - uses : dtolnay/rust-toolchain@stable
220+ - name : Remove NASM
221+ shell : bash
222+ run : |
223+ rm -f `which nasm`
220224 - name : Verify NASM not available
221225 shell : bash
222226 run : |
223227 if nasm --version; then
224- exit 1
228+ echo `which nasm`
229+ exit 1
225230 else
226231 exit 0;
227232 fi
You can’t perform that action at this time.
0 commit comments