Skip to content

Commit

Permalink
Use coretto for JDK 8 plus add MacOS ARM
Browse files Browse the repository at this point in the history
  • Loading branch information
mdedetrich committed May 9, 2024
1 parent 2a57287 commit 34395a8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,12 @@ jobs:
name: Build and Test
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
os: [ubuntu-latest, macos-13, macos-latest]
scala: [2.12.19, 2.13.13, 3.3.3]
java: [temurin@8, temurin@11, temurin@17, temurin@21]
exclude:
- java: temurin@8
os: macos-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout current branch (full)
Expand Down
6 changes: 5 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,11 @@ ThisBuild / githubWorkflowPublishTargetBranches :=
RefPredicate.Equals(Ref.Branch("main"))
)

ThisBuild / githubWorkflowOSes := Seq("ubuntu-latest", "macos-latest")
ThisBuild / githubWorkflowOSes := Seq("ubuntu-latest", "macos-13", "macos-latest")


ThisBuild / githubWorkflowBuildMatrixExclusions +=
MatrixExclude(Map("java" -> "temurin@8", "os" -> "macos-latest"))

ThisBuild / githubWorkflowJavaVersions := List(
JavaSpec.temurin("8"),
Expand Down

0 comments on commit 34395a8

Please sign in to comment.