File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -24,11 +24,13 @@ jobs:
24
24
os : [ubuntu-latest]
25
25
scala : [2.12.17, 2.13.14, 3.3.3]
26
26
java : [corretto@11]
27
+ exclude :
28
+ - scala : 3.3.3
27
29
runs-on : ${{ matrix.os }}
28
30
steps :
29
31
- uses : pierotofy/set-swap-space@master
30
32
with :
31
- swap-size-gb : 5
33
+ swap-size-gb : 7
32
34
33
35
- name : Checkout current branch (full)
34
36
uses : actions/checkout@v4
71
73
steps :
72
74
- uses : pierotofy/set-swap-space@master
73
75
with :
74
- swap-size-gb : 5
76
+ swap-size-gb : 7
75
77
76
78
- name : Checkout current branch (full)
77
79
uses : actions/checkout@v4
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ ThisBuild / githubWorkflowGeneratedCI ~= {
8
8
wj.copy(
9
9
steps = WorkflowStep .Use (
10
10
ref = UseRef .Public (" pierotofy" , " set-swap-space" , " master" ),
11
- params = Map (" swap-size-gb" -> " 5 " )
11
+ params = Map (" swap-size-gb" -> " 7 " )
12
12
) +: wj.steps
13
13
)
14
14
)
@@ -19,6 +19,10 @@ ThisBuild / githubWorkflowJavaVersions := Seq(javaDistro)
19
19
20
20
ThisBuild / githubWorkflowSbtCommand := " ./sbt"
21
21
22
+ ThisBuild / githubWorkflowBuildMatrixExclusions ++= Seq (
23
+ MatrixExclude (Map (" scala" -> scala3)) // TODO
24
+ )
25
+
22
26
val tzdbVersion = " 2019c"
23
27
val scalajavaLocalesVersion = " 1.5.4"
24
28
Global / onChangedBuildSource := ReloadOnSourceChanges
You can’t perform that action at this time.
0 commit comments