File tree 3 files changed +15
-2
lines changed
3 files changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -25,14 +25,16 @@ pipeline:
25
25
image : lampepfl/dotty:2017-10-20
26
26
commands :
27
27
- 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
29
30
30
31
test_bootstrapped :
31
32
group : test
32
33
image : lampepfl/dotty:2017-10-20
33
34
commands :
34
35
- 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
36
38
37
39
test_optimised :
38
40
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