From c1327223110b744a4dcb8c9cdf83bd9da41cdaf4 Mon Sep 17 00:00:00 2001 From: Kyri Petrou Date: Thu, 15 Feb 2024 06:46:50 +1030 Subject: [PATCH 1/2] Add build for Scala 3.4.0 and 3.3.2 --- build.sbt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index a55b0b1..4f1ac41 100644 --- a/build.sbt +++ b/build.sbt @@ -2,7 +2,8 @@ inThisBuild(Seq( organization := "com.github.ghik", scalaVersion := crossScalaVersions.value.head, crossScalaVersions := Seq( - "3.3.1", "3.3.1-RC7", "3.3.1-RC6", "3.3.1-RC5", "3.3.1-RC4", "3.3.1-RC3", "3.3.1-RC2", "3.3.1-RC1", "3.3.0", + "3.4.1-RC1", "3.4.0", + "3.3.2", "3.3.1", "3.3.1-RC7", "3.3.1-RC6", "3.3.1-RC5", "3.3.1-RC4", "3.3.1-RC3", "3.3.1-RC2", "3.3.1-RC1", "3.3.0", "3.2.2", "3.2.1", "2.13.10", "2.13.11", "2.13.12", "2.12.17", "2.12.18" From 2a9d1995b35c2adba9bcfd0d8c82283e0b77a911 Mon Sep 17 00:00:00 2001 From: Kyri Petrou Date: Thu, 15 Feb 2024 06:48:25 +1030 Subject: [PATCH 2/2] Bump SBT version and generate ci files --- .github/workflows/ci.yml | 35 ++++++++++++++++++++++++++++++++++- project/build.properties | 2 +- 2 files changed, 35 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dd14f39..809873b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,6 +24,9 @@ jobs: matrix: os: [ubuntu-latest] scala: + - 3.4.1-RC1 + - 3.4.0 + - 3.3.2 - 3.3.1 - 3.3.1-RC7 - 3.3.1-RC6 @@ -89,7 +92,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [3.3.1] + scala: [3.4.1-RC1] java: [temurin@17] runs-on: ${{ matrix.os }} steps: @@ -117,6 +120,36 @@ jobs: ~/Library/Caches/Coursier/v1 key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} + - name: Download target directories (3.4.1-RC1) + uses: actions/download-artifact@v2 + with: + name: target-${{ matrix.os }}-3.4.1-RC1-${{ matrix.java }} + + - name: Inflate target directories (3.4.1-RC1) + run: | + tar xf targets.tar + rm targets.tar + + - name: Download target directories (3.4.0) + uses: actions/download-artifact@v2 + with: + name: target-${{ matrix.os }}-3.4.0-${{ matrix.java }} + + - name: Inflate target directories (3.4.0) + run: | + tar xf targets.tar + rm targets.tar + + - name: Download target directories (3.3.2) + uses: actions/download-artifact@v2 + with: + name: target-${{ matrix.os }}-3.3.2-${{ matrix.java }} + + - name: Inflate target directories (3.3.2) + run: | + tar xf targets.tar + rm targets.tar + - name: Download target directories (3.3.1) uses: actions/download-artifact@v2 with: diff --git a/project/build.properties b/project/build.properties index 46e43a9..e8a1e24 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.8.2 +sbt.version=1.9.7