From 62d715cac84f4ea8ee417e34f26b0d2d1640f3c8 Mon Sep 17 00:00:00 2001 From: Matthias Kurz Date: Sat, 12 Oct 2024 20:35:24 +0200 Subject: [PATCH] Add support for Scala 2.12.20 --- .github/workflows/ci.yml | 11 +++++++++++ build.sbt | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 85e228b..45cdd0e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,6 +38,7 @@ jobs: - 2.13.4 - 2.13.3 - 2.13.2 + - 2.12.20 - 2.12.19 - 2.12.18 - 2.12.17 @@ -247,6 +248,16 @@ jobs: tar xf targets.tar rm targets.tar + - name: Download target directories (2.12.20) + uses: actions/download-artifact@v4 + with: + name: target-${{ matrix.os }}-2.12.20-${{ matrix.java }} + + - name: Inflate target directories (2.12.20) + run: | + tar xf targets.tar + rm targets.tar + - name: Download target directories (2.12.19) uses: actions/download-artifact@v4 with: diff --git a/build.sbt b/build.sbt index d8a0130..097ea47 100644 --- a/build.sbt +++ b/build.sbt @@ -22,7 +22,7 @@ inThisBuild(Seq( scalaVersion := crossScalaVersions.value.head, crossScalaVersions := Seq( "2.13.15", "2.13.14", "2.13.13", "2.13.12", "2.13.11", "2.13.10", "2.13.9", "2.13.8", "2.13.7", "2.13.6", "2.13.5", "2.13.4", "2.13.3", "2.13.2", - "2.12.19", "2.12.18", "2.12.17", "2.12.16", "2.12.15", "2.12.14", "2.12.13", "2.11.12" + "2.12.20", "2.12.19", "2.12.18", "2.12.17", "2.12.16", "2.12.15", "2.12.14", "2.12.13", "2.11.12" ), githubWorkflowTargetTags ++= Seq("v*"),