3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-24 09:35:32 +00:00

Try again

This commit is contained in:
Akash Levy 2025-01-16 16:03:00 -08:00
parent 84ceb84fb3
commit 54c69f1fed

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