File tree Expand file tree Collapse file tree 1 file changed +25
-2
lines changed Expand file tree Collapse file tree 1 file changed +25
-2
lines changed Original file line number Diff line number Diff line change 89
89
./project/scripts/sbt ";scala3-bootstrapped/compile ;scala3-bootstrapped/test;sjsSandbox/run;sjsSandbox/test;sjsJUnitTests/test;sjsCompilerTests/test ;sbt-dotty/scripted scala2-compat/* ;configureIDE ;stdlib-bootstrapped/test:run ;stdlib-bootstrapped-tasty-tests/test"
90
90
./project/scripts/bootstrapCmdTests
91
91
92
- test_windows :
92
+ test_windows_fast :
93
93
runs-on : [self-hosted, Windows]
94
94
if : " github.event_name == 'schedule'
95
95
|| (
99
99
|| (
100
100
github.event_name == 'pull_request'
101
101
&& !contains(github.event.pull_request.body, '[skip ci]')
102
- && !contains(github.event.pull_request.body, '[skip test_windows]')
102
+ )"
103
+
104
+ steps :
105
+ - name : Git Checkout
106
+ uses : actions/checkout@v2
107
+
108
+ - name : Test
109
+ run : sbt ";scala3-bootstrapped/compile"
110
+ shell : cmd
111
+
112
+ - name : Scala.js Test
113
+ run : sbt ";sjsJUnitTests/test ;sjsCompilerTests/test"
114
+ shell : cmd
115
+
116
+ test_windows_full :
117
+ runs-on : [self-hosted, Windows]
118
+ if : " github.event_name == 'schedule'
119
+ || (
120
+ github.event_name == 'push'
121
+ && !startsWith(github.event.ref, 'refs/tags/sbt-dotty-')
122
+ )
123
+ || (
124
+ github.event_name == 'push'
125
+ && github.ref == 'master'
103
126
)"
104
127
105
128
steps :
You can’t perform that action at this time.
0 commit comments