10
10
11
11
jobs :
12
12
jvm-tests :
13
+ timeout-minutes : 80
13
14
runs-on : ${{ matrix.OS }}
14
15
strategy :
15
16
fail-fast : false
41
42
run : ./mill -i integration.jvm.test
42
43
43
44
native-tests :
45
+ timeout-minutes : 80
44
46
runs-on : ${{ matrix.OS }}
45
47
strategy :
46
48
fail-fast : false
74
76
COURSIER_JNI : force
75
77
76
78
native-mostly-static-tests :
79
+ timeout-minutes : 80
77
80
runs-on : ubuntu-latest
78
81
steps :
79
82
- uses : actions/checkout@v2
@@ -114,6 +117,7 @@ jobs:
114
117
docker push ghcr.io/virtuslabrnd/scala-cli:latest
115
118
116
119
native-static-tests :
120
+ timeout-minutes : 80
117
121
runs-on : ubuntu-latest
118
122
steps :
119
123
- uses : actions/checkout@v2
@@ -138,6 +142,7 @@ jobs:
138
142
run : ./mill -i integration.native-static.test
139
143
140
144
checks :
145
+ timeout-minutes : 15
141
146
runs-on : ubuntu-latest
142
147
steps :
143
148
- uses : actions/checkout@v2
@@ -154,6 +159,7 @@ jobs:
154
159
run : ./mill -i 'dummy.amm[_].resolvedRunIvyDeps.'
155
160
156
161
format :
162
+ timeout-minutes : 15
157
163
runs-on : ubuntu-latest
158
164
steps :
159
165
- uses : actions/checkout@v2
@@ -168,6 +174,7 @@ jobs:
168
174
- run : scalafmt --check
169
175
170
176
reference-doc :
177
+ timeout-minutes : 15
171
178
runs-on : ubuntu-latest
172
179
steps :
173
180
- uses : actions/checkout@v2
@@ -188,6 +195,7 @@ jobs:
188
195
)
189
196
190
197
vc-redist :
198
+ timeout-minutes : 15
191
199
runs-on : windows-2016
192
200
if : github.event_name == 'push' || github.event.pull_request.head.repo.full_name == 'VirtuslabRnD/scala-cli'
193
201
steps :
@@ -231,6 +239,7 @@ jobs:
231
239
SONATYPE_USERNAME : ${{ secrets.SONATYPE_USERNAME }}
232
240
233
241
launchers :
242
+ timeout-minutes : 20
234
243
needs : [jvm-tests, native-tests, native-mostly-static-tests, native-static-tests, vc-redist, format, checks, reference-doc]
235
244
if : github.event_name == 'push'
236
245
runs-on : ubuntu-latest
0 commit comments