Skip to content

Commit

Permalink
squashme
Browse files Browse the repository at this point in the history
  • Loading branch information
timkpaine committed Apr 16, 2023
1 parent ec6cf35 commit b48b19d
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 6 deletions.
22 changes: 17 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,17 +62,18 @@ jobs:
- name: Setup homebrew cache
uses: actions/cache@v3
with:
path: |
~/Library/Caches/Homebrew/boost--*
~/Library/Caches/Homebrew/downloads/*--boost-*
key: brew-${{ hashFiles('cpp/perspective/CMakeLists.txt') }}
restore-keys: brew-
path: |
~/Library/Caches/Homebrew/boost--*
~/Library/Caches/Homebrew/downloads/*--boost-*
key: brew-${{ hashFiles('cpp/perspective/CMakeLists.txt') }}
restore-keys: brew-
if: ${{ runner.os == 'macOS' }}

- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '11'
if: ${{ matrix.plugin == 'systemverilog'}}

- name: Install Mac Dependencies
run: |
Expand All @@ -94,6 +95,16 @@ jobs:
with:
key: ccache-${{ matrix.os }}

- name: Install yosys
run: |
export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH"
set -ex
git clone https://github.com/YosysHQ/yosys.git
pushd yosys
make CONFIG=gcc -j`nproc` && sudo make CONFIG=gcc install
if: ${{ runner.os != 'macOS' }}

- name: Install yosys
run: |
export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH"
Expand All @@ -102,6 +113,7 @@ jobs:
git clone https://github.com/YosysHQ/yosys.git
pushd yosys
make -j`nproc` && sudo make install
if: ${{ runner.os == 'macOS' }}

- name: Install Googletest
run: |
Expand Down
2 changes: 1 addition & 1 deletion ql-qlf-plugin/tests/qlf_k6n10f/sim_tc36fifo/sim_tc36fifo.v
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
//
// SPDX-License-Identifier:ISC

`include "qlf_k6n10f/cells_sim.v"
`include "../../../qlf_k6n10f/cells_sim.v"
`timescale 1ns/1ps

module tb;
Expand Down

0 comments on commit b48b19d

Please sign in to comment.