Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix CI #116

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 16 additions & 6 deletions .github/workflows/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
verilator:
runs-on: ubuntu-22.04
steps:
- uses: actions/cache@v2
- uses: actions/cache@v3
id: cache-verilator
with:
path: /opt/verilator
Expand Down Expand Up @@ -38,11 +38,11 @@ jobs:
needs: verilator
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: false

- uses: actions/cache@v2
- uses: actions/cache@v3
id: cache-verilator
with:
path: /opt/verilator
Expand All @@ -59,7 +59,7 @@ jobs:

- name: Install verible and lint
run: |
curl -sSL https://api.github.com/repos/chipsalliance/verible/releases/latest | grep browser_download_url | grep Ubuntu-20.04 | cut -d '"' -f 4 | wget -qi -
curl -sSL https://api.github.com/repos/chipsalliance/verible/releases/latest | grep browser_download_url | grep Ubuntu-20.04 | grep "x86_64" | cut -d '"' -f 4 | wget -qi -
mkdir verible
tar -xf verible*.tar.gz -C verible --strip-components=1
export PATH=$PATH:$PWD/verible/bin:/opt/verilator/bin
Expand All @@ -75,11 +75,21 @@ jobs:
unit: [lsu, alu, mul, sld, elem, csr, misc]
main_core: [ibex, cv32e40x]
steps:
- uses: actions/checkout@v2
- name: Maximize build space
uses: easimon/maximize-build-space@master
with:
root-reserve-mb: 8192
temp-reserve-mb: 8192
remove-dotnet: 'true'
remove-android: 'true'
remove-haskell: 'true'
remove-codeql: 'true'

- uses: actions/checkout@v4
with:
submodules: true

- uses: actions/cache@v2
- uses: actions/cache@v3
id: cache-verilator
with:
path: /opt/verilator
Expand Down