Skip to content

Commit

Permalink
Add cached install with test,
Browse files Browse the repository at this point in the history
  • Loading branch information
Yvan Tortorella committed Nov 8, 2024
1 parent 2702346 commit 39e1c10
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,26 @@ jobs:
with:
submodules: recursive

- name: Cache toolchain
id: cache-toolchain
uses: actions/cache@v3
env:
cache-name: cache-toolchain
with:
path: vendor/install/riscv/bin
run: |
make riscv32-gcc
- name: Cache golden
id: cache-golden
uses: actions/cache@v3
env:
cache-name: cache-golden
with:
path: golden-model
run: |
cd golden-model && source setup-py.sh
- name: Run Tests
run: |
make golden M=12 N=16 K=16
Expand Down

0 comments on commit 39e1c10

Please sign in to comment.