mirror of
https://github.com/YosysHQ/yosys
synced 2025-11-03 13:07:58 +00:00
CI: Fix iverilog deps
This commit is contained in:
parent
1c4d2f7790
commit
c6f1979032
2 changed files with 9 additions and 2 deletions
4
.github/actions/setup-build-env/action.yml
vendored
4
.github/actions/setup-build-env/action.yml
vendored
|
|
@ -33,7 +33,7 @@ runs:
|
|||
if: runner.os == 'Linux'
|
||||
uses: awalsh128/cache-apt-pkgs-action@v1.6.0
|
||||
with:
|
||||
packages: autoconf git make python3
|
||||
packages: gawk git make python3
|
||||
version: ${{ inputs.runs-on }}-commonys
|
||||
|
||||
- name: Linux build dependencies
|
||||
|
|
@ -54,7 +54,7 @@ runs:
|
|||
if: runner.os == 'Linux' && inputs.get-test-deps == 'true'
|
||||
uses: awalsh128/cache-apt-pkgs-action@v1.6.0
|
||||
with:
|
||||
packages: gawk libgtest-dev
|
||||
packages: libgtest-dev
|
||||
version: ${{ inputs.runs-on }}-testys
|
||||
|
||||
- name: Install macOS Dependencies
|
||||
|
|
|
|||
7
.github/actions/setup-iverilog/action.yml
vendored
7
.github/actions/setup-iverilog/action.yml
vendored
|
|
@ -33,6 +33,13 @@ runs:
|
|||
path: .local/
|
||||
key: ${{ inputs.runs-on }}-${{ steps.get-iverilog.outputs.IVERILOG_GIT }}
|
||||
|
||||
- name: iverilog Linux deps
|
||||
if: steps.restore-iverilog.outputs.cache-hit != 'true' && runner.os == 'Linux'
|
||||
uses: awalsh128/cache-apt-pkgs-action@v1.6.0
|
||||
with:
|
||||
packages: autoconf gperf make gcc g++ bison flex
|
||||
version: ${{ inputs.runs-on }}-iverilog
|
||||
|
||||
- name: iverilog macOS deps
|
||||
if: steps.restore-iverilog.outputs.cache-hit != 'true' && runner.os == 'macOS'
|
||||
shell: bash
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue