File tree Expand file tree Collapse file tree 3 files changed +15
-2
lines changed Expand file tree Collapse file tree 3 files changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -25,14 +25,16 @@ pipeline:
2525 image : lampepfl/dotty:2017-10-20
2626 commands :
2727 - cp -R . /tmp/1/ && cd /tmp/1/
28- - ./project/scripts/sbt ";compile ;testAll ;dotty-bench/jmh:run 1 1 tests/pos/alias.scala; ;dotc tests/run/arraycopy.scala ;dotr Test"
28+ - ./project/scripts/sbt ";compile ;testAll"
29+ - ./project/scripts/sbtTests
2930
3031 test_bootstrapped :
3132 group : test
3233 image : lampepfl/dotty:2017-10-20
3334 commands :
3435 - cp -R . /tmp/2/ && cd /tmp/2/
35- - ./project/scripts/sbt ";dotty-bootstrapped/compile ;dotty-bootstrapped/testAll ;dotty-bench-bootstrapped/jmh:run 1 1 tests/pos/alias.scala"
36+ - ./project/scripts/sbt ";dotty-bootstrapped/compile ;dotty-bootstrapped/testAll"
37+ - ./project/scripts/sbtBootstrappedTests
3638
3739 test_optimised :
3840 group : test
Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+
3+ # check that benchmarks can run
4+ ./project/scripts/sbt " dotty-bench-bootstrapped/jmh:run 1 1 tests/pos/alias.scala"
Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+
3+ # check that benchmarks can run
4+ ./project/scripts/sbt " dotty-bench/jmh:run 1 1 tests/pos/alias.scala"
5+
6+ # check that `dotc` compiles and `dotr` runs it
7+ ./project/scripts/sbt " ;dotc tests/run/arraycopy.scala ;dotr Test"
You can’t perform that action at this time.
0 commit comments