minor updates

This commit is contained in:
Blaise Tine
2022-02-05 20:52:23 -05:00
parent 76481bc794
commit 77002dd06a
3 changed files with 6 additions and 1 deletions

View File

@@ -19,6 +19,8 @@ install:
- export PATH=$VERILATOR_ROOT/bin:$PATH - export PATH=$VERILATOR_ROOT/bin:$PATH
# Install toolchain # Install toolchain
- ci/toolchain_install.sh -all - ci/toolchain_install.sh -all
# build project
- make -s
# stages ordering # stages ordering
stages: stages:

View File

@@ -4,7 +4,7 @@
set -e set -e
# ensure build # ensure build
make -C hw -s make -s
coverage() coverage()
{ {

View File

@@ -3,6 +3,9 @@
# exit when any command fails # exit when any command fails
set -e set -e
# ensure build
make -s
# clear POCL cache # clear POCL cache
rm -rf ~/.cache/pocl rm -rf ~/.cache/pocl