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:
2424 os : [ubuntu-latest]
2525 scala : [2.12.17, 2.13.14, 3.3.3]
2626 java : [corretto@11]
27+ exclude :
28+ - scala : 3.3.3
2729 runs-on : ${{ matrix.os }}
2830 steps :
2931 - uses : pierotofy/set-swap-space@master
3032 with :
31- swap-size-gb : 5
33+ swap-size-gb : 7
3234
3335 - name : Checkout current branch (full)
3436 uses : actions/checkout@v4
7173 steps :
7274 - uses : pierotofy/set-swap-space@master
7375 with :
74- swap-size-gb : 5
76+ swap-size-gb : 7
7577
7678 - name : Checkout current branch (full)
7779 uses : actions/checkout@v4
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ ThisBuild / githubWorkflowGeneratedCI ~= {
88 wj.copy(
99 steps = WorkflowStep .Use (
1010 ref = UseRef .Public (" pierotofy" , " set-swap-space" , " master" ),
11- params = Map (" swap-size-gb" -> " 5 " )
11+ params = Map (" swap-size-gb" -> " 7 " )
1212 ) +: wj.steps
1313 )
1414 )
@@ -19,6 +19,10 @@ ThisBuild / githubWorkflowJavaVersions := Seq(javaDistro)
1919
2020ThisBuild / githubWorkflowSbtCommand := " ./sbt"
2121
22+ ThisBuild / githubWorkflowBuildMatrixExclusions ++= Seq (
23+ MatrixExclude (Map (" scala" -> scala3)) // TODO
24+ )
25+
2226val tzdbVersion = " 2019c"
2327val scalajavaLocalesVersion = " 1.5.4"
2428Global / onChangedBuildSource := ReloadOnSourceChanges
You can’t perform that action at this time.
0 commit comments