3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-05 17:14:08 +00:00

Merge pull request #4621 from RCoeurjoly/roland/get_vcd2fst

Add "Get vcd2fst" step to test-yosys job
This commit is contained in:
Miodrag Milanović 2024-09-30 21:38:39 +02:00 committed by GitHub
commit 500db6acc6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -100,6 +100,16 @@ jobs:
cd iverilog
echo "IVERILOG_GIT=$(git rev-parse HEAD)" >> $GITHUB_ENV
- name: Get vcd2fst
shell: bash
run: |
git clone https://github.com/mmicko/libwave.git
mkdir -p ${{ github.workspace }}/.local/
cd libwave
cmake . -DCMAKE_INSTALL_PREFIX=${{ github.workspace }}/.local
make -j$procs
make install
- name: Cache iverilog
id: cache-iverilog
uses: actions/cache@v4