|
11 | 11 |
|
12 | 12 | jobs: |
13 | 13 | test: |
14 | | - runs-on: [self-hosted, linux] |
| 14 | + runs-on: [self-hosted, Linux] |
15 | 15 | container: lampepfl/dotty:2020-04-24 |
16 | 16 |
|
17 | 17 | steps: |
|
54 | 54 | ./project/scripts/cmdTests |
55 | 55 |
|
56 | 56 | test_bootstrapped: |
57 | | - runs-on: [self-hosted, linux] |
| 57 | + runs-on: [self-hosted, Linux] |
58 | 58 | container: lampepfl/dotty:2020-04-24 |
59 | 59 |
|
60 | 60 | steps: |
|
96 | 96 | ./project/scripts/sbt ";dotty-bootstrapped/compile ;dotty-bootstrapped/test;sjsSandbox/run;sjsSandbox/test;sjsJUnitTests/test;sjsCompilerTests/test ;configureIDE" |
97 | 97 | ./project/scripts/bootstrapCmdTests |
98 | 98 |
|
| 99 | +
|
| 100 | + test-windows: |
| 101 | + runs-on: [self-hosted, Windows] |
| 102 | + |
| 103 | + steps: |
| 104 | + - name: Git Checkout |
| 105 | + uses: actions/checkout@v2 |
| 106 | + |
| 107 | + - name: Test |
| 108 | + run: sbt ";compile ;test" |
| 109 | + shell: cmd |
| 110 | + |
| 111 | + test_bootstrapped-windows: |
| 112 | + runs-on: [self-hosted, Windows] |
| 113 | + |
| 114 | + steps: |
| 115 | + - name: Git Checkout |
| 116 | + uses: actions/checkout@v2 |
| 117 | + |
| 118 | + - name: Test |
| 119 | + run: sbt ";dotty-bootstrapped/compile ;dotty-bootstrapped/test" |
| 120 | + shell: cmd |
| 121 | + |
| 122 | + # - name: Scala.js Test |
| 123 | + # run: sbt ";sjsJUnitTests/test" |
| 124 | + # shell: cmd |
| 125 | + |
99 | 126 | community_build: |
100 | | - runs-on: [self-hosted, linux] |
| 127 | + runs-on: [self-hosted, Linux] |
101 | 128 | container: lampepfl/dotty:2020-04-24 |
102 | 129 |
|
103 | 130 | steps: |
@@ -138,7 +165,7 @@ jobs: |
138 | 165 | ./project/scripts/sbt community-build/test |
139 | 166 |
|
140 | 167 | test_sbt: |
141 | | - runs-on: [self-hosted, linux] |
| 168 | + runs-on: [self-hosted, Linux] |
142 | 169 | container: lampepfl/dotty:2020-04-24 |
143 | 170 | if: ( |
144 | 171 | github.event_name == 'push' && |
@@ -181,7 +208,7 @@ jobs: |
181 | 208 | run: ./project/scripts/sbt sbt-dotty/scripted |
182 | 209 |
|
183 | 210 | test_java8: |
184 | | - runs-on: [self-hosted, linux] |
| 211 | + runs-on: [self-hosted, Linux] |
185 | 212 | container: lampepfl/dotty:2020-04-24 |
186 | 213 | if: ( |
187 | 214 | github.event_name == 'push' && |
@@ -227,7 +254,7 @@ jobs: |
227 | 254 | run: ./project/scripts/sbt ";compile ;test" |
228 | 255 |
|
229 | 256 | publish_nightly: |
230 | | - runs-on: [self-hosted, linux] |
| 257 | + runs-on: [self-hosted, Linux] |
231 | 258 | container: lampepfl/dotty:2020-04-24 |
232 | 259 | needs: [test, test_bootstrapped, community_build, test_sbt, test_java8] |
233 | 260 | if: github.event_name == 'schedule' |
@@ -274,7 +301,7 @@ jobs: |
274 | 301 | ./project/scripts/sbtPublish ";project dotty-bootstrapped ;publishSigned ;sonatypeBundleRelease" |
275 | 302 |
|
276 | 303 | nightly_documentation: |
277 | | - runs-on: [self-hosted, linux] |
| 304 | + runs-on: [self-hosted, Linux] |
278 | 305 | container: lampepfl/dotty:2020-04-24 |
279 | 306 | needs: [publish_nightly] |
280 | 307 | if: github.event_name == 'schedule' |
@@ -328,7 +355,7 @@ jobs: |
328 | 355 | publish_branch: gh-pages |
329 | 356 |
|
330 | 357 | publish_release: |
331 | | - runs-on: [self-hosted, linux] |
| 358 | + runs-on: [self-hosted, Linux] |
332 | 359 | container: lampepfl/dotty:2020-04-24 |
333 | 360 | needs: [test, test_bootstrapped, community_build, test_sbt, test_java8] |
334 | 361 | if: github.event_name == 'push' && |
@@ -423,7 +450,7 @@ jobs: |
423 | 450 | asset_content_type: text/plain |
424 | 451 |
|
425 | 452 | release_documentation: |
426 | | - runs-on: [self-hosted, linux] |
| 453 | + runs-on: [self-hosted, Linux] |
427 | 454 | container: lampepfl/dotty:2020-04-24 |
428 | 455 | needs: [publish_release] |
429 | 456 | if: github.event_name == 'push' && |
@@ -480,7 +507,7 @@ jobs: |
480 | 507 | publish_branch: gh-pages |
481 | 508 |
|
482 | 509 | publish_sbt_release: |
483 | | - runs-on: [self-hosted, linux] |
| 510 | + runs-on: [self-hosted, Linux] |
484 | 511 | container: lampepfl/dotty:2020-04-24 |
485 | 512 | needs: [test, test_bootstrapped, community_build, test_sbt, test_java8] |
486 | 513 | if: github.event_name == 'push' && |
|
0 commit comments