Skip to content

Commit

Permalink
Merge pull request #14 from alexander-klimov/dev/scala-3.3.1
Browse files Browse the repository at this point in the history
Added Scala 3.3.1-RC6, 3.3.1-RC7 and 3.3.1
  • Loading branch information
ghik authored Sep 7, 2023
2 parents 09323d3 + 53e5f50 commit 79609cc
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 2 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.3.1
- 3.3.1-RC7
- 3.3.1-RC6
- 3.3.1-RC5
- 3.3.1-RC4
- 3.3.1-RC3
Expand Down Expand Up @@ -84,7 +87,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [3.3.1-RC5]
scala: [3.3.1]
java: [temurin@17]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -112,6 +115,36 @@ jobs:
~/Library/Caches/Coursier/v1
key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }}

- name: Download target directories (3.3.1)
uses: actions/download-artifact@v2
with:
name: target-${{ matrix.os }}-3.3.1-${{ matrix.java }}

- name: Inflate target directories (3.3.1)
run: |
tar xf targets.tar
rm targets.tar
- name: Download target directories (3.3.1-RC7)
uses: actions/download-artifact@v2
with:
name: target-${{ matrix.os }}-3.3.1-RC7-${{ matrix.java }}

- name: Inflate target directories (3.3.1-RC7)
run: |
tar xf targets.tar
rm targets.tar
- name: Download target directories (3.3.1-RC6)
uses: actions/download-artifact@v2
with:
name: target-${{ matrix.os }}-3.3.1-RC6-${{ matrix.java }}

- name: Inflate target directories (3.3.1-RC6)
run: |
tar xf targets.tar
rm targets.tar
- name: Download target directories (3.3.1-RC5)
uses: actions/download-artifact@v2
with:
Expand Down
7 changes: 6 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
inThisBuild(Seq(
organization := "com.github.ghik",
scalaVersion := crossScalaVersions.value.head,
crossScalaVersions := Seq("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.12.17"),
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.2.2", "3.2.1",
"2.13.10", "2.13.11",
"2.12.17"
),

githubWorkflowTargetTags ++= Seq("v*"),
githubWorkflowJavaVersions := Seq(JavaSpec.temurin("17")),
Expand Down

0 comments on commit 79609cc

Please sign in to comment.