Skip to content

Commit

Permalink
ci: Build RTL and simulation binaries with multiple processes
Browse files Browse the repository at this point in the history
  • Loading branch information
colluca committed Dec 4, 2023
1 parent e2bdec4 commit 73ff9cf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,4 @@ jobs:
submodules: 'recursive'
- name: Generate single-cluster Occamy RTL sources
run: |
make -C target/sim CFG_OVERRIDE=cfg/single-cluster.hjson rtl
make -C target/sim CFG_OVERRIDE=cfg/single-cluster.hjson rtl -j
8 changes: 4 additions & 4 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ docs:
occamy-single-cluster-vsim:
script:
- cd target/sim
- make CFG_OVERRIDE=cfg/single-cluster.hjson rtl
- make CFG_OVERRIDE=cfg/single-cluster.hjson rtl -j
- make sw
- make bin/occamy_top.vsim
- make bin/occamy_top.vsim -j
- ./run.py sw/run-single-cluster.yaml --simulator vsim

#####################
Expand All @@ -61,7 +61,7 @@ occamy-single-cluster-vsim:
occamy-full-vsim:
script:
- cd target/sim
- make CFG_OVERRIDE=cfg/full.hjson rtl
- make CFG_OVERRIDE=cfg/full.hjson rtl -j
- make LENGTH=384 sw
- make bin/occamy_top.vsim
- make bin/occamy_top.vsim -j
- ./run.py sw/run-full-occamy.yaml --simulator vsim

0 comments on commit 73ff9cf

Please sign in to comment.