Skip to content

Commit

Permalink
Add nasm dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
bifurcation committed Oct 27, 2023
1 parent f08ddb9 commit 6206cc6
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/main_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,9 @@ jobs:
restore-keys: |
${{ env.CACHE_VERSION }}-${{ env.CACHE_NAME }}-ubuntu-latest
- name: Dependencies (Ubuntu)
if: ${{ matrix.os == 'ubuntu-latest' }}
- name: Dependencies
run: |
sudo apt-get install -y linux-headers-$(uname -r)
sudo apt-get install -y linux-headers-$(uname -r) nasm
- name: Restore cache
uses: actions/cache@v3
Expand Down Expand Up @@ -181,14 +180,14 @@ jobs:
- name: Dependencies (macOs)
if: ${{ matrix.os == 'macos-latest' }}
run: |
brew install llvm pkg-config
brew install llvm pkg-config nasm
ln -s "/usr/local/opt/llvm/bin/clang-format" "/usr/local/bin/clang-format"
ln -s "/usr/local/opt/llvm/bin/clang-tidy" "/usr/local/bin/clang-tidy"
- name: Dependencies (Ubuntu)
if: ${{ matrix.os == 'ubuntu-latest' }}
run: |
sudo apt-get install -y linux-headers-$(uname -r)
sudo apt-get install -y linux-headers-$(uname -r) nasm
- name: Build (OpenSSL 1.1)
run: |
Expand Down

0 comments on commit 6206cc6

Please sign in to comment.