File tree 2 files changed +15
-13
lines changed
2 files changed +15
-13
lines changed Original file line number Diff line number Diff line change 31
31
scala : [2.12.17, 2.13.10, 3.2.1]
32
32
java : [temurin@11]
33
33
project : [rootJS, rootJVM, rootNative]
34
+ include :
35
+ - scala : 3.2.1
36
+ project : rootNative
37
+ os : macos-latest
34
38
exclude :
35
39
- scala : 3.2.1
36
40
project : rootJVM
41
+ - scala : 3.2.1
42
+ project : rootNative
43
+ os : ubuntu-latest
37
44
runs-on : ${{ matrix.os }}
38
45
steps :
39
46
- name : Checkout current branch (full)
@@ -224,16 +231,6 @@ jobs:
224
231
tar xf targets.tar
225
232
rm targets.tar
226
233
227
- - name : Download target directories (3.2.1, rootNative)
228
- uses : actions/download-artifact@v2
229
- with :
230
- name : target-${{ matrix.os }}-${{ matrix.java }}-3.2.1-rootNative
231
-
232
- - name : Inflate target directories (3.2.1, rootNative)
233
- run : |
234
- tar xf targets.tar
235
- rm targets.tar
236
-
237
234
- name : Import signing key
238
235
if : env.PGP_SECRET != '' && env.PGP_PASSPHRASE == ''
239
236
run : echo $PGP_SECRET | base64 -di | gpg --import
Original file line number Diff line number Diff line change @@ -7,10 +7,15 @@ ThisBuild / tlBaseVersion := "2.5"
7
7
8
8
ThisBuild / githubWorkflowJavaVersions := Seq (JavaSpec .temurin(" 11" ))
9
9
10
- ThisBuild / githubWorkflowBuildMatrixExclusions += // TODO
11
- MatrixExclude (Map (" scala" -> scala3, " project" -> " rootJVM" ))
10
+ ThisBuild / githubWorkflowBuildMatrixExclusions ++= Seq (
11
+ MatrixExclude (Map (" scala" -> scala3, " project" -> " rootJVM" )), // TODO
12
+ MatrixExclude (
13
+ Map (" scala" -> scala3, " project" -> " rootNative" , " os" -> " ubuntu-latest" )
14
+ ) // run on macOS instead
15
+ )
12
16
13
- Global / concurrentRestrictions += Tags .limit(NativeTags .Link , 1 )
17
+ ThisBuild / githubWorkflowBuildMatrixInclusions +=
18
+ MatrixInclude (Map (" scala" -> scala3, " project" -> " rootNative" ), Map (" os" -> " macos-latest" ))
14
19
15
20
val tzdbVersion = " 2019c"
16
21
val scalajavaLocalesVersion = " 1.5.1"
You can’t perform that action at this time.
0 commit comments