Skip to content

Commit

Permalink
Updated nasm installation
Browse files Browse the repository at this point in the history
  • Loading branch information
SalOne22 committed Oct 8, 2023
1 parent 2540060 commit 466c145
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/rimage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,16 @@ jobs:
sudo apt-get -yq install musl-tools musl-dev:${{ matrix.target-apt-arch }}
sudo ln -s "/usr/bin/g++" "/usr/bin/musl-g++"
- name: Setup nasm πŸ§‘β€πŸ’»
- name: Setup nasm πŸ§‘β€πŸ’» (windows, macos)
if: startsWith(matrix.os, 'windows') || startsWith(matrix.os, 'macos')
uses: ilammy/setup-nasm@v1

- name: Setup nasm πŸ§‘β€πŸ’» (ubuntu)
if: startsWith(matrix.os, 'ubuntu')
run: |
sudo apt-get -yq update
sudo apt-get -yq install nasm:${{ matrix.target-apt-arch }}
- name: Setup rust toolchain πŸ¦€
uses: actions-rs/toolchain@v1
with:
Expand Down

0 comments on commit 466c145

Please sign in to comment.