mirror of
https://github.com/YosysHQ/yosys
synced 2025-11-06 06:16:04 +00:00
CI: vcd2fst needs deps
This commit is contained in:
parent
bb8c72a9d7
commit
d1f89ccb23
1 changed files with 13 additions and 13 deletions
26
.github/actions/setup-iverilog/action.yml
vendored
26
.github/actions/setup-iverilog/action.yml
vendored
|
|
@ -9,6 +9,19 @@ inputs:
|
||||||
runs:
|
runs:
|
||||||
using: composite
|
using: composite
|
||||||
steps:
|
steps:
|
||||||
|
- 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
|
||||||
|
run: |
|
||||||
|
brew install autoconf
|
||||||
|
|
||||||
- name: Get iverilog
|
- name: Get iverilog
|
||||||
id: get-iverilog
|
id: get-iverilog
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
@ -33,19 +46,6 @@ runs:
|
||||||
path: .local/
|
path: .local/
|
||||||
key: ${{ inputs.runs-on }}-${{ steps.get-iverilog.outputs.IVERILOG_GIT }}
|
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
|
|
||||||
run: |
|
|
||||||
brew install autoconf
|
|
||||||
|
|
||||||
- name: Build iverilog
|
- name: Build iverilog
|
||||||
if: steps.restore-iverilog.outputs.cache-hit != 'true'
|
if: steps.restore-iverilog.outputs.cache-hit != 'true'
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue