aboutsummaryrefslogtreecommitdiff
path: root/.drone.yml
diff options
context:
space:
mode:
authorFelix Mulder <felix.mulder@gmail.com>2017-03-27 16:37:45 +0200
committerFelix Mulder <felix.mulder@gmail.com>2017-03-29 10:33:27 +0200
commitfd37852c0499cf0ca3dcc71333e2ab1f638d8f68 (patch)
treecfcee801e63c9c6ce8d8dd2bd52ce546ee025991 /.drone.yml
parentf7e3b7002d1eefbeaac3970be4ac729843d6a939 (diff)
downloaddotty-fd37852c0499cf0ca3dcc71333e2ab1f638d8f68.tar.gz
dotty-fd37852c0499cf0ca3dcc71333e2ab1f638d8f68.tar.bz2
dotty-fd37852c0499cf0ca3dcc71333e2ab1f638d8f68.zip
Add test filtering via `filterTest <regex>`
Diffstat (limited to '.drone.yml')
-rw-r--r--.drone.yml14
1 files changed, 7 insertions, 7 deletions
diff --git a/.drone.yml b/.drone.yml
index eb36e65d8..520c4049e 100644
--- a/.drone.yml
+++ b/.drone.yml
@@ -6,7 +6,7 @@ pipeline:
- ln -s /var/cache/drone/scala-scala scala-scala
- ln -s /var/cache/drone/ivy2 "$HOME/.ivy2"
- ./scripts/update-scala-library
- - sbt -J-Xmx4096m -J-XX:ReservedCodeCacheSize=512m -J-XX:MaxMetaspaceSize=1024m -Ddotty.drone.mem=4096m "${TEST}"
+ - sbt -J-Xmx24G -J-XX:ReservedCodeCacheSize=512m -J-XX:MaxMetaspaceSize=4G -Ddotty.drone.mem=4096m "${TEST}"
when:
branch:
exclude: gh-pages
@@ -34,9 +34,9 @@ pipeline:
matrix:
TEST:
- - ;test;dotty-bin-tests/test
- - ;publishLocal;dotty-bootstrapped/test
- - partest-only-no-bootstrap --show-diff --verbose
- - partest-only --show-diff --verbose
- - ;set testOptions in LocalProject("dotty-compiler") := Seq() ;dotty-compiler/testOnly dotty.tools.dotc.CompilationTests
- - ;publishLocal ;set testOptions in LocalProject("dotty-compiler-bootstrapped") := Seq() ;dotty-bootstrapped/testOnly dotty.tools.dotc.CompilationTests
+ - ;set testOptions in LocalProject("dotty-compiler") += Tests.Argument(TestFrameworks.JUnit, "--exclude-categories=dotty.tools.dotc.ParallelTesting") ;test ;dotty-bin-tests/test
+ - ;set testOptions in LocalProject("dotty-compiler-bootstrapped") += Tests.Argument(TestFrameworks.JUnit, "--exclude-categories=dotty.tools.dotc.ParallelTesting") ;publishLocal ;dotty-bootstrapped/test
+ - ;set testOptions in LocalProject("dotty-compiler") += Tests.Argument(TestFrameworks.JUnit, "--exclude-categories=dotty.tools.dotc.ParallelTesting") ;partest-only-no-bootstrap --show-diff --verbose
+ - ;set testOptions in LocalProject("dotty-compiler-bootstrapped") += Tests.Argument(TestFrameworks.JUnit, "--exclude-categories=dotty.tools.dotc.ParallelTesting") ;partest-only --show-diff --verbose
+ - ;dotty-compiler/testOnly dotty.tools.dotc.CompilationTests
+ - ;publishLocal ;dotty-bootstrapped/testOnly dotty.tools.dotc.CompilationTests