Try again

This commit is contained in:
Akash Levy 2025-01-16 16:03:00 -08:00
parent 84ceb84fb3
commit 54c69f1fed
1 changed files with 19 additions and 0 deletions

View File

@ -111,6 +111,16 @@ jobs:
- name: Setup environment
uses: ./.github/actions/setup-build-env
- name: Setup Mac
if: matrix.os == 'macos-latest'
run: brew bundle install
- name: Setup Linux
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get -y update
sudo apt-get -y install libnsl-dev
- name: Get iverilog
shell: bash
run: |
@ -194,6 +204,15 @@ jobs:
- name: Setup environment
uses: ./.github/actions/setup-build-env
- name: Setup Mac
if: matrix.os == 'macos-latest'
run: brew bundle install
- name: Setup Linux
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get -y update
sudo apt-get -y install libnsl-dev
- name: Download build artifact
uses: actions/download-artifact@v4