Remove unnecessary CI tests
This commit is contained in:
@@ -241,40 +241,12 @@ jobs:
|
|||||||
group-key: "group-cores"
|
group-key: "group-cores"
|
||||||
project-key: "chipyard-ariane"
|
project-key: "chipyard-ariane"
|
||||||
timeout: "30m"
|
timeout: "30m"
|
||||||
chipyard-sodor-stage1-run-tests:
|
chipyard-sodor-run-tests:
|
||||||
executor: main-env
|
executor: main-env
|
||||||
steps:
|
steps:
|
||||||
- run-tests:
|
- run-tests:
|
||||||
group-key: "group-cores"
|
group-key: "group-cores"
|
||||||
project-key: "chipyard-sodor-stage1"
|
project-key: "chipyard-sodor"
|
||||||
timeout: "30m"
|
|
||||||
chipyard-sodor-stage2-run-tests:
|
|
||||||
executor: main-env
|
|
||||||
steps:
|
|
||||||
- run-tests:
|
|
||||||
group-key: "group-cores"
|
|
||||||
project-key: "chipyard-sodor-stage2"
|
|
||||||
timeout: "30m"
|
|
||||||
chipyard-sodor-stage3-run-tests:
|
|
||||||
executor: main-env
|
|
||||||
steps:
|
|
||||||
- run-tests:
|
|
||||||
group-key: "group-cores"
|
|
||||||
project-key: "chipyard-sodor-stage3"
|
|
||||||
timeout: "30m"
|
|
||||||
chipyard-sodor-stage5-run-tests:
|
|
||||||
executor: main-env
|
|
||||||
steps:
|
|
||||||
- run-tests:
|
|
||||||
group-key: "group-cores"
|
|
||||||
project-key: "chipyard-sodor-stage5"
|
|
||||||
timeout: "30m"
|
|
||||||
chipyard-sodor-ucode-run-tests:
|
|
||||||
executor: main-env
|
|
||||||
steps:
|
|
||||||
- run-tests:
|
|
||||||
group-key: "group-cores"
|
|
||||||
project-key: "chipyard-sodor-ucode"
|
|
||||||
timeout: "30m"
|
timeout: "30m"
|
||||||
chipyard-dmirocket-run-tests:
|
chipyard-dmirocket-run-tests:
|
||||||
executor: main-env
|
executor: main-env
|
||||||
@@ -462,22 +434,9 @@ workflows:
|
|||||||
- chipyard-ariane-run-tests:
|
- chipyard-ariane-run-tests:
|
||||||
requires:
|
requires:
|
||||||
- prepare-chipyard-cores
|
- prepare-chipyard-cores
|
||||||
- chipyard-sodor-stage1-run-tests:
|
- chipyard-sodor-run-tests:
|
||||||
requires:
|
requires:
|
||||||
- prepare-chipyard-cores
|
- prepare-chipyard-cores
|
||||||
- chipyard-sodor-stage2-run-tests:
|
|
||||||
requires:
|
|
||||||
- prepare-chipyard-cores
|
|
||||||
- chipyard-sodor-stage3-run-tests:
|
|
||||||
requires:
|
|
||||||
- prepare-chipyard-cores
|
|
||||||
- chipyard-sodor-stage5-run-tests:
|
|
||||||
requires:
|
|
||||||
- prepare-chipyard-cores
|
|
||||||
- chipyard-sodor-ucode-run-tests:
|
|
||||||
requires:
|
|
||||||
- prepare-chipyard-cores
|
|
||||||
|
|
||||||
- chipyard-dmirocket-run-tests:
|
- chipyard-dmirocket-run-tests:
|
||||||
requires:
|
requires:
|
||||||
- prepare-chipyard-peripherals
|
- prepare-chipyard-peripherals
|
||||||
|
|||||||
@@ -79,8 +79,4 @@ mapping["firesim-multiclock"]="SCALA_TEST=firesim.firesim.RocketMulticlockF1Test
|
|||||||
mapping["fireboom"]="SCALA_TEST=firesim.firesim.BoomF1Tests"
|
mapping["fireboom"]="SCALA_TEST=firesim.firesim.BoomF1Tests"
|
||||||
mapping["icenet"]="SUB_PROJECT=icenet"
|
mapping["icenet"]="SUB_PROJECT=icenet"
|
||||||
mapping["testchipip"]="SUB_PROJECT=testchipip"
|
mapping["testchipip"]="SUB_PROJECT=testchipip"
|
||||||
mapping["chipyard-sodor-stage1"]="SUB_PROJEET=Sodor1StageConfig"
|
mapping["chipyard-sodor"]="CONFIG=Sodor5StageConfig"
|
||||||
mapping["chipyard-sodor-stage2"]="SUB_PROJEET=Sodor2StageConfig"
|
|
||||||
mapping["chipyard-sodor-stage3"]="SUB_PROJEET=Sodor3StageSinglePortConfig"
|
|
||||||
mapping["chipyard-sodor-stage5"]="SUB_PROJEET=Sodor5StageConfig"
|
|
||||||
mapping["chipyard-sodor-ucode"]="SUB_PROJEET=SodorUCodeConfig"
|
|
||||||
|
|||||||
@@ -94,19 +94,7 @@ case $1 in
|
|||||||
chipyard-ariane)
|
chipyard-ariane)
|
||||||
make run-binary-fast -C $LOCAL_SIM_DIR ${mapping[$1]} BINARY=$RISCV/riscv64-unknown-elf/share/riscv-tests/benchmarks/multiply.riscv
|
make run-binary-fast -C $LOCAL_SIM_DIR ${mapping[$1]} BINARY=$RISCV/riscv64-unknown-elf/share/riscv-tests/benchmarks/multiply.riscv
|
||||||
;;
|
;;
|
||||||
chipyard-sodor-stage1)
|
chipyard-sodor)
|
||||||
run_asm ${mapping[$1]}
|
|
||||||
;;
|
|
||||||
chipyard-sodor-stage2)
|
|
||||||
run_asm ${mapping[$1]}
|
|
||||||
;;
|
|
||||||
chipyard-sodor-stage3)
|
|
||||||
run_asm ${mapping[$1]}
|
|
||||||
;;
|
|
||||||
chipyard-sodor-stage5)
|
|
||||||
run_asm ${mapping[$1]}
|
|
||||||
;;
|
|
||||||
chipyard-sodor-ucode)
|
|
||||||
run_asm ${mapping[$1]}
|
run_asm ${mapping[$1]}
|
||||||
;;
|
;;
|
||||||
chipyard-nvdla)
|
chipyard-nvdla)
|
||||||
|
|||||||
Reference in New Issue
Block a user