@@ -19,44 +19,44 @@ pipeline:
19
19
# clone submodules in parallelRiRem
20
20
- git submodule update --init --recursive --jobs 3
21
21
22
- # TESTS:
23
- # We run tests in parallel. Tests run in a copy of the working directory to avoid conflict
24
- test :
25
- group : test
26
- image : lampepfl/dotty:2018-10-01
27
- commands :
28
- - cp -R . /tmp/1/ && cd /tmp/1/
29
- - ./project/scripts/sbt ";compile ;test"
30
- - ./project/scripts/cmdTests
22
+ # # TESTS:
23
+ # # We run tests in parallel. Tests run in a copy of the working directory to avoid conflict
24
+ # test:
25
+ # group: test
26
+ # image: lampepfl/dotty:2018-10-01
27
+ # commands:
28
+ # - cp -R . /tmp/1/ && cd /tmp/1/
29
+ # - ./project/scripts/sbt ";compile ;test"
30
+ # - ./project/scripts/cmdTests
31
31
32
- test_bootstrapped :
33
- group : test
34
- image : lampepfl/dotty:2018-10-01
35
- commands :
36
- - cp -R . /tmp/2/ && cd /tmp/2/
37
- - ./project/scripts/sbt ";dotty-bootstrapped/compile ;dotty-bootstrapped/test"
38
- - ./project/scripts/bootstrapCmdTests
32
+ # test_bootstrapped:
33
+ # group: test
34
+ # image: lampepfl/dotty:2018-10-01
35
+ # commands:
36
+ # - cp -R . /tmp/2/ && cd /tmp/2/
37
+ # - ./project/scripts/sbt ";dotty-bootstrapped/compile ;dotty-bootstrapped/test"
38
+ # - ./project/scripts/bootstrapCmdTests
39
39
40
- test_sbt :
41
- group : test
42
- image : lampepfl/dotty:2018-10-01
43
- commands :
44
- - cp -R . /tmp/4/ && cd /tmp/4/
45
- - ./project/scripts/sbt sbt-dotty/scripted
46
- when :
47
- # sbt scripted tests are slow and only run on nightly or deployment
48
- event : [ tag, deployment ]
40
+ # test_sbt:
41
+ # group: test
42
+ # image: lampepfl/dotty:2018-10-01
43
+ # commands:
44
+ # - cp -R . /tmp/4/ && cd /tmp/4/
45
+ # - ./project/scripts/sbt sbt-dotty/scripted
46
+ # when:
47
+ # # sbt scripted tests are slow and only run on nightly or deployment
48
+ # event: [ tag, deployment ]
49
49
50
50
# DOCUMENTATION:
51
51
documentation :
52
52
image : lampepfl/dotty:2018-10-01
53
53
commands :
54
54
- ./project/scripts/genDocs
55
55
secrets : [ bot_token ]
56
- when :
57
- event : push
58
- # We only generate the documentation for the master branch
59
- branch : master
56
+ # when:
57
+ # event: push
58
+ # # We only generate the documentation for the master branch
59
+ # branch: master
60
60
61
61
# PUBLISHING:
62
62
# Publishing expect NIGHTLYBUILD or RELEASEBUILD to be set. See dottyVersion in Build.scala
0 commit comments