Skip to content

Commit 5cba4eb

Browse files
committed
MatrixExclude(Map("scala" -> scala3))
1 parent 248ccca commit 5cba4eb

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff 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
@@ -71,7 +73,7 @@ jobs:
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

build.sbt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff 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

2020
ThisBuild / githubWorkflowSbtCommand := "./sbt"
2121

22+
ThisBuild / githubWorkflowBuildMatrixExclusions ++= Seq(
23+
MatrixExclude(Map("scala" -> scala3)) // TODO
24+
)
25+
2226
val tzdbVersion = "2019c"
2327
val scalajavaLocalesVersion = "1.5.4"
2428
Global / onChangedBuildSource := ReloadOnSourceChanges

0 commit comments

Comments
 (0)