Skip to content

Commit

Permalink
Remove duplicate tests
Browse files Browse the repository at this point in the history
  • Loading branch information
abejgonzalez authored and jerryz123 committed Jan 13, 2019
1 parent b9ee2bb commit 4894a1f
Showing 1 changed file with 0 additions and 124 deletions.
124 changes: 0 additions & 124 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -259,34 +259,6 @@ jobs:
name: Run BoomConfig benchmark tests
command: make run-bmark-tests -C ../boom-template/verisim CONFIG=BoomConfig

boomconfig-run-regression-tests:
docker:
- image: riscvboom/riscvboom-images:0.0.5
environment:
JVM_OPTS: -Xmx3200m # Customize the JVM maximum heap limit
TERM: dumb

steps:
# Checkout the code
- checkout

- run:
name: Create hash of riscv-tools based on rocket-chip
command: |
ci/create-hash.sh rocket-chip
- restore_cache:
keys:
- riscv-tools-installed-v2-{{ checksum "../rocket-chip.hash" }}

- restore_cache:
keys:
- boom-template-boomconfig-{{ .Branch }}-{{ .Revision }}

- run:
name: Run BoomConfig regression tests
command: make run-regression-tests -C ../boom-template/verisim CONFIG=BoomConfig

boomconfig-run-assembly-tests:
docker:
- image: riscvboom/riscvboom-images:0.0.5
Expand Down Expand Up @@ -344,34 +316,6 @@ jobs:
name: Run SmallBoomConfig benchmark tests
command: make run-bmark-tests -C ../boom-template/verisim CONFIG=SmallBoomConfig

smallboomconfig-run-regression-tests:
docker:
- image: riscvboom/riscvboom-images:0.0.5
environment:
JVM_OPTS: -Xmx3200m # Customize the JVM maximum heap limit
TERM: dumb

steps:
# Checkout the code
- checkout

- run:
name: Create hash of riscv-tools based on rocket-chip
command: |
ci/create-hash.sh rocket-chip
- restore_cache:
keys:
- riscv-tools-installed-v2-{{ checksum "../rocket-chip.hash" }}

- restore_cache:
keys:
- boom-template-smallboomconfig-{{ .Branch }}-{{ .Revision }}

- run:
name: Run SmallBoomConfig regression tests
command: make run-regression-tests -C ../boom-template/verisim CONFIG=SmallBoomConfig

smallboomconfig-run-assembly-tests:
docker:
- image: riscvboom/riscvboom-images:0.0.5
Expand Down Expand Up @@ -429,34 +373,6 @@ jobs:
name: Run MediumBoomConfig benchmark tests
command: make run-bmark-tests -C ../boom-template/verisim CONFIG=MediumBoomConfig

mediumboomconfig-run-regression-tests:
docker:
- image: riscvboom/riscvboom-images:0.0.5
environment:
JVM_OPTS: -Xmx3200m # Customize the JVM maximum heap limit
TERM: dumb

steps:
# Checkout the code
- checkout

- run:
name: Create hash of riscv-tools based on rocket-chip
command: |
ci/create-hash.sh rocket-chip
- restore_cache:
keys:
- riscv-tools-installed-v2-{{ checksum "../rocket-chip.hash" }}

- restore_cache:
keys:
- boom-template-mediumboomconfig-{{ .Branch }}-{{ .Revision }}

- run:
name: Run MediumBoomConfig regression tests
command: make run-regression-tests -C ../boom-template/verisim CONFIG=MediumBoomConfig

mediumboomconfig-run-assembly-tests:
docker:
- image: riscvboom/riscvboom-images:0.0.5
Expand Down Expand Up @@ -514,34 +430,6 @@ jobs:
# name: Run MegaBoomConfig benchmark tests
# command: make run-bmark-tests -C ../boom-template/verisim CONFIG=MegaBoomConfig
#
# megaboomconfig-run-regression-tests:
# docker:
# - image: riscvboom/riscvboom-images:0.0.5
# environment:
# JVM_OPTS: -Xmx3200m # Customize the JVM maximum heap limit
# TERM: dumb
#
# steps:
# # Checkout the code
# - checkout
#
# - run:
# name: Create hash of riscv-tools based on rocket-chip
# command: |
# ci/create-hash.sh rocket-chip
#
# - restore_cache:
# keys:
# - riscv-tools-installed-v2-{{ checksum "../rocket-chip.hash" }}
#
# - restore_cache:
# keys:
# - boom-template-megaboomconfig-{{ .Branch }}-{{ .Revision }}
#
# - run:
# name: Run MegaBoomConfig regression tests
# command: make run-regression-tests -C ../boom-template/verisim CONFIG=MegaBoomConfig
#
# megaboomconfig-run-assembly-tests:
# docker:
# - image: riscvboom/riscvboom-images:0.0.5
Expand Down Expand Up @@ -608,9 +496,6 @@ workflows:
- boomconfig-run-benchmark-tests:
requires:
- prepare-boomconfig
- boomconfig-run-regression-tests:
requires:
- prepare-boomconfig
- boomconfig-run-assembly-tests:
requires:
- prepare-boomconfig
Expand All @@ -619,9 +504,6 @@ workflows:
- smallboomconfig-run-benchmark-tests:
requires:
- prepare-smallboomconfig
- smallboomconfig-run-regression-tests:
requires:
- prepare-smallboomconfig
- smallboomconfig-run-assembly-tests:
requires:
- prepare-smallboomconfig
Expand All @@ -630,9 +512,6 @@ workflows:
- mediumboomconfig-run-benchmark-tests:
requires:
- prepare-mediumboomconfig
- mediumboomconfig-run-regression-tests:
requires:
- prepare-mediumboomconfig
- mediumboomconfig-run-assembly-tests:
requires:
- prepare-mediumboomconfig
Expand All @@ -641,9 +520,6 @@ workflows:
# - megaboomconfig-run-benchmark-tests:
# requires:
# - prepare-megaboomconfig
# - megaboomconfig-run-regression-tests:
# requires:
# - prepare-megaboomconfig
# - megaboomconfig-run-assembly-tests:
# requires:
# - prepare-megaboomconfig

0 comments on commit 4894a1f

Please sign in to comment.