Skip to content

Commit

Permalink
Merge pull request #17 from kyri-petrou/scala-3.4.0
Browse files Browse the repository at this point in the history
Scala 3.3.1 & 3.4.0
  • Loading branch information
ghik authored Feb 15, 2024
2 parents 20b917a + 2a9d199 commit e6421c6
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 3 deletions.
35 changes: 34 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down
3 changes: 2 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.8.2
sbt.version=1.9.7

0 comments on commit e6421c6

Please sign in to comment.