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

Fix actions deps

This commit is contained in:
Akash Levy 2025-01-16 19:34:20 -08:00
parent 53ed83fcac
commit 81f30593cb
2 changed files with 2 additions and 31 deletions

View file

@ -8,7 +8,7 @@ runs:
shell: bash
run: |
sudo apt-get update
sudo apt-get install gperf build-essential bison flex libreadline-dev gawk tcl-dev libffi-dev git graphviz xdot pkg-config python3 libboost-system-dev libboost-python-dev libboost-filesystem-dev zlib1g-dev libbz2-dev
sudo apt-get install gperf build-essential bison flex libreadline-dev gawk tcl-dev libffi-dev git graphviz xdot pkg-config python3 libboost-system-dev libboost-python-dev libboost-filesystem-dev zlib1g-dev libnsl-dev libbz2-dev
- name: Install macOS Dependencies
if: runner.os == 'macOS'
@ -16,6 +16,7 @@ runs:
run: |
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1 brew update
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1 brew bundle install || true
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1 brew install autoconf || true
- name: Linux runtime environment
if: runner.os == 'Linux'

View file

@ -51,17 +51,6 @@ 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 libdwarf-dev libelf-dev elfutils libdw-dev \
libnsl-dev
- name: Build Verific
run: cd verific/tclmain && make -j$procs
@ -111,16 +100,6 @@ 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: |
@ -204,15 +183,6 @@ 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