mirror of https://github.com/YosysHQ/yosys.git
Try again
This commit is contained in:
parent
84ceb84fb3
commit
54c69f1fed
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue