add icenet and testchipip unit tests to CI

This commit is contained in:
Howard Mao
2020-04-24 17:15:15 -07:00
parent 8df43203a2
commit 94628e78b2
3 changed files with 48 additions and 0 deletions

View File

@@ -252,6 +252,16 @@ jobs:
steps:
- prepare-rtl:
project-key: "chipyard-ariane"
prepare-icenet:
executor: main-env
steps:
- prepare-rtl:
project-key: "icenet"
prepare-testchipip:
executor: main-env
steps:
- prepare-rtl:
project-key: "testchipip"
chipyard-rocket-run-tests:
executor: main-env
steps:
@@ -337,6 +347,18 @@ jobs:
- run-tests:
project-key: "chipyard-ariane"
timeout: "30m"
icenet-run-tests:
executor: main-env
steps:
- run-tests:
project-key: "icenet"
timeout: "30m"
testchipip-run-tests:
executor: main-env
steps:
- run-tests:
project-key: "testchipip"
timeout: "30m"
# Order and dependencies of jobs to run
workflows:
@@ -431,6 +453,16 @@ workflows:
- install-riscv-toolchain
- install-verilator
- prepare-icenet:
requires:
- install-riscv-toolchain
- install-verilator
- prepare-testchipip:
requires:
- install-riscv-toolchain
- install-verilator
# Run the respective tests
# Run midasexamples test
@@ -495,3 +527,11 @@ workflows:
- chipyard-ariane-run-tests:
requires:
- prepare-chipyard-ariane
- icenet-run-tests:
requires:
- prepare-icenet
- testchipip-run-tests:
requires:
- prepare-testchipip