Skip to content

Commit

Permalink
Install nasm to workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dreamos82 committed Oct 2, 2023
1 parent aaa17e1 commit 6db4702
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ jobs:
- name: Install llvm and clang
run: sudo apt install lld llvm

- name: Install nasm
run: sudo apt install nasm

- name: Download gcc
if: steps.cached-compiler-binaries.outputs.cache-hit != 'true'
run: >
Expand All @@ -40,6 +43,7 @@ jobs:
run: |
cd dreamos;
ls;
make clean
make clean;
nasm -v

0 comments on commit 6db4702

Please sign in to comment.