Skip to content

Commit 5153ad3

Browse files
authored
Fix CI - prebuilt NASM (#886)
* Fix CI - prebuilt NASM * More better
1 parent 4464454 commit 5153ad3

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

.github/workflows/integration.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff 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

.github/workflows/tests.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)