From b2ba2a9f53b6f3a2851e4a82099a574065e447b5 Mon Sep 17 00:00:00 2001 From: kyri-petrou Date: Sat, 18 Feb 2023 23:45:34 +1100 Subject: [PATCH] Add build for Scala 3.3.0-RC3 --- .github/workflows/ci.yml | 13 ++++++++++++- build.sbt | 2 +- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6f6d1da..b7d69c5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,6 +24,7 @@ jobs: matrix: os: [ubuntu-latest] scala: + - 3.3.0-RC3 - 3.3.0-RC2 - 3.3.0-RC1 - 3.2.2 @@ -79,7 +80,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [3.3.0-RC2] + scala: [3.3.0-RC3] java: [temurin@17] runs-on: ${{ matrix.os }} steps: @@ -107,6 +108,16 @@ jobs: ~/Library/Caches/Coursier/v1 key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} + - name: Download target directories (3.3.0-RC3) + uses: actions/download-artifact@v2 + with: + name: target-${{ matrix.os }}-3.3.0-RC3-${{ matrix.java }} + + - name: Inflate target directories (3.3.0-RC3) + run: | + tar xf targets.tar + rm targets.tar + - name: Download target directories (3.3.0-RC2) uses: actions/download-artifact@v2 with: diff --git a/build.sbt b/build.sbt index 395fdb5..8f9d533 100644 --- a/build.sbt +++ b/build.sbt @@ -1,7 +1,7 @@ inThisBuild(Seq( organization := "com.github.ghik", scalaVersion := crossScalaVersions.value.head, - crossScalaVersions := Seq("3.3.0-RC2", "3.3.0-RC1", "3.2.2", "3.2.1", "2.13.10", "2.12.17"), + crossScalaVersions := Seq("3.3.0-RC3", "3.3.0-RC2", "3.3.0-RC1", "3.2.2", "3.2.1", "2.13.10", "2.12.17"), githubWorkflowTargetTags ++= Seq("v*"), githubWorkflowJavaVersions := Seq(JavaSpec.temurin("17")),