File tree Expand file tree Collapse file tree 1 file changed +27
-1
lines changed Expand file tree Collapse file tree 1 file changed +27
-1
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
|| (
@@ -102,6 +102,32 @@ jobs:
102
102
&& !contains(github.event.pull_request.body, '[skip test_windows]')
103
103
)"
104
104
105
+ steps :
106
+ - name : Git Checkout
107
+ uses : actions/checkout@v2
108
+
109
+ - name : Test
110
+ run : sbt ";scala3-bootstrapped/compile"
111
+ shell : cmd
112
+
113
+ - name : Scala.js Test
114
+ run : sbt ";sjsJUnitTests/test ;sjsCompilerTests/test"
115
+ shell : cmd
116
+
117
+ test_windows_full :
118
+ runs-on : [self-hosted, Windows]
119
+ if : " github.event_name == 'schedule'
120
+ || (
121
+ github.event_name == 'push'
122
+ && !startsWith(github.event.ref, 'refs/tags/sbt-dotty-')
123
+ )
124
+ || (
125
+ github.event_name == 'pull_request'
126
+ && !contains(github.event.pull_request.body, '[skip ci]')
127
+ && !contains(github.event.pull_request.body, '[skip test_windows]')
128
+ && github.event.pull_request.merged == true
129
+ )"
130
+
105
131
steps :
106
132
- name : Git Checkout
107
133
uses : actions/checkout@v2
You can’t perform that action at this time.
0 commit comments