Skip to content

Commit

Permalink
Merge pull request #29 from kubukoz/scala3rc3
Browse files Browse the repository at this point in the history
  • Loading branch information
kubukoz authored Apr 21, 2021
2 parents a8494bf + be0a719 commit f5f7d73
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 5 deletions.
13 changes: 12 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ jobs:
- 3.0.0-M3
- 3.0.0-RC1
- 3.0.0-RC2
- 3.0.0-RC3
java: [[email protected]]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -87,7 +88,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [3.0.0-RC1]
scala: [3.0.0-RC3]
java: [[email protected]]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -233,6 +234,16 @@ jobs:
tar xf targets.tar
rm targets.tar
- name: Download target directories (3.0.0-RC3)
uses: actions/download-artifact@v2
with:
name: target-${{ matrix.os }}-3.0.0-RC3-${{ matrix.java }}

- name: Inflate target directories (3.0.0-RC3)
run: |
tar xf targets.tar
rm targets.tar
- uses: olafurpg/setup-gpg@v3

- run: sbt ++${{ matrix.scala }} ci-release
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ The plugin is currently published for the following Scala versions:

- 2.12.10, 2.12.11, 2.12.12, 2.12.13
- 2.13.1, 2.13.2, 2.13.3, 2.13.4, 2.13.5
- 3.0.0-M3, 3.0.0-RC1, 3.0.0-RC2
- 3.0.0-M3, 3.0.0-RC1, 3.0.0-RC2, 3.0.0-RC3

## What does the plugin actually do?

Expand Down
8 changes: 5 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ inThisBuild(

val GraalVM11 = "[email protected]"

ThisBuild / scalaVersion := "3.0.0-RC1"
ThisBuild / scalaVersion := "3.0.0-RC3"
ThisBuild / crossScalaVersions := Seq(
"2.12.10",
"2.12.11",
Expand All @@ -39,7 +39,8 @@ ThisBuild / crossScalaVersions := Seq(
//
"3.0.0-M3",
"3.0.0-RC1",
"3.0.0-RC2"
"3.0.0-RC2",
"3.0.0-RC3"
)

ThisBuild / githubWorkflowJavaVersions := Seq(GraalVM11)
Expand Down Expand Up @@ -71,7 +72,8 @@ def scalatestVersion(scalaVersion: String) =
scalaVersion match {
case "3.0.0-M3" => "3.2.3"
case "3.0.0-RC1" => "3.2.5"
case _ => "3.2.7"
case "3.0.0-RC2" => "3.2.7"
case _ => "3.2.8"
}

val plugin = project.settings(
Expand Down

0 comments on commit f5f7d73

Please sign in to comment.