Skip to content

Commit

Permalink
Add sbt test to regressions (#2511)
Browse files Browse the repository at this point in the history
Signed-off-by: Schuyler Eldridge <schuyler.eldridge@ibm.com>
  • Loading branch information
seldridge authored Jun 10, 2020
1 parent 8833176 commit 1e0db63
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ jobs:
strategy:
fail-fast: false
matrix:
bucket: [1, 2, 3, 4, 5, 6, 7]
bucket: [1, 2, 3, 4, 5, 6, 7, 8]
steps:
- uses: actions/checkout@v2

Expand Down
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,3 +100,7 @@ jobs:
name: check wake compilation
script:
- ci-tests/wake_scala_compilation
- <<: *test*
name: Scala tests
script:
- ./regression/run-test-bucket 8
5 changes: 5 additions & 0 deletions regression/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -334,3 +334,8 @@ emulator-jtag-dtm-tests-64 : $(EMULATOR_JTAG_DTM_64_TEST_STAMPS)
# Targets for JTAG DTM full-chain simulation
vsim-jtag-dtm-regression: vsim-jtag-dtm-tests-32 vsim-jtag-dtm-tests-64
emulator-jtag-dtm-regression: emulator-jtag-dtm-tests-32 emulator-jtag-dtm-tests-64

# Target to run Scalatest regressionsk 'sbt test'
.PHONY: scalatest
scalatest: stamps/other-submodules.stamp
(cd $(abspath $(TOP)) && $(SBT) test)
3 changes: 3 additions & 0 deletions regression/run-test-bucket
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,9 @@ case "${bucket_number}" in
7)
travis_wait 100 make emulator-ndebug -C regression SUITE=Miscellaneous JVM_MEMORY=3G
;;
8)
make scalatest -C regression SUITE=foo JVM_MEMORY=8G
;;

-h|--help)
print_usage
Expand Down

0 comments on commit 1e0db63

Please sign in to comment.