Skip to content

Commit

Permalink
add install nasm
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeanhwea committed Oct 13, 2024
1 parent 3ee44de commit e850475
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,14 @@ jobs:
matrix:
target: [x86_64-unknown-linux-musl]
steps:
- uses: actions/checkout@master
- name: Run unit test
- name: Checkout repository code
uses: actions/checkout@v4
- name: Install depends
run: |
sudo apt-get update
sudo apt-get install nasm gcc make
- name: Build source code
run: |
make
- name: Checkout build outputs
- name: List build outputs
run: find . -type f -not -path './.git/*' | sort

0 comments on commit e850475

Please sign in to comment.