Skip to content

Commit b48b19d

Browse files
committed
squashme
1 parent ec6cf35 commit b48b19d

File tree

2 files changed

+18
-6
lines changed

2 files changed

+18
-6
lines changed

.github/workflows/ci.yml

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -62,17 +62,18 @@ jobs:
6262
- name: Setup homebrew cache
6363
uses: actions/cache@v3
6464
with:
65-
path: |
66-
~/Library/Caches/Homebrew/boost--*
67-
~/Library/Caches/Homebrew/downloads/*--boost-*
68-
key: brew-${{ hashFiles('cpp/perspective/CMakeLists.txt') }}
69-
restore-keys: brew-
65+
path: |
66+
~/Library/Caches/Homebrew/boost--*
67+
~/Library/Caches/Homebrew/downloads/*--boost-*
68+
key: brew-${{ hashFiles('cpp/perspective/CMakeLists.txt') }}
69+
restore-keys: brew-
7070
if: ${{ runner.os == 'macOS' }}
7171

7272
- uses: actions/setup-java@v3
7373
with:
7474
distribution: 'temurin'
7575
java-version: '11'
76+
if: ${{ matrix.plugin == 'systemverilog'}}
7677

7778
- name: Install Mac Dependencies
7879
run: |
@@ -94,6 +95,16 @@ jobs:
9495
with:
9596
key: ccache-${{ matrix.os }}
9697

98+
- name: Install yosys
99+
run: |
100+
export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH"
101+
set -ex
102+
103+
git clone https://github.com/YosysHQ/yosys.git
104+
pushd yosys
105+
make CONFIG=gcc -j`nproc` && sudo make CONFIG=gcc install
106+
if: ${{ runner.os != 'macOS' }}
107+
97108
- name: Install yosys
98109
run: |
99110
export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH"
@@ -102,6 +113,7 @@ jobs:
102113
git clone https://github.com/YosysHQ/yosys.git
103114
pushd yosys
104115
make -j`nproc` && sudo make install
116+
if: ${{ runner.os == 'macOS' }}
105117

106118
- name: Install Googletest
107119
run: |

ql-qlf-plugin/tests/qlf_k6n10f/sim_tc36fifo/sim_tc36fifo.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//
77
// SPDX-License-Identifier:ISC
88

9-
`include "qlf_k6n10f/cells_sim.v"
9+
`include "../../../qlf_k6n10f/cells_sim.v"
1010
`timescale 1ns/1ps
1111

1212
module tb;

0 commit comments

Comments
 (0)