Skip to content

Commit

Permalink
Merge pull request #564 from typelevel/wip-scala32
Browse files Browse the repository at this point in the history
build: Scala 3.2 + Increase tlBaseVersion
  • Loading branch information
ahjohannessen authored Sep 21, 2022
2 parents 01da0ca + 1aaa0e5 commit d3ebb82
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [2.12.17, 2.13.8, 3.1.3]
scala: [2.12.17, 2.13.8, 3.2.0]
java: [temurin@8, temurin@17]
exclude:
- scala: 2.12.17
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [3.1.3]
scala: [3.2.0]
java: [temurin@8]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -199,12 +199,12 @@ jobs:
tar xf targets.tar
rm targets.tar
- name: Download target directories (3.1.3)
- name: Download target directories (3.2.0)
uses: actions/download-artifact@v2
with:
name: target-${{ matrix.os }}-${{ matrix.java }}-3.1.3
name: target-${{ matrix.os }}-${{ matrix.java }}-3.2.0

- name: Inflate target directories (3.1.3)
- name: Inflate target directories (3.2.0)
run: |
tar xf targets.tar
rm targets.tar
Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import com.typesafe.tools.mima.core._
import com.typesafe.tools.mima.core.ProblemFilters._
import Dependencies._

lazy val Scala3 = "3.1.3"
lazy val Scala3 = "3.2.0"
lazy val Scala213 = "2.13.8"
lazy val Scala212 = "2.12.17"

Expand All @@ -15,7 +15,7 @@ inThisBuild(
List(
scalaVersion := Scala3,
crossScalaVersions := List(Scala212, Scala213, Scala3),
tlBaseVersion := "2.4",
tlBaseVersion := "2.5",
startYear := Some(2018),
licenses := Seq(("MIT", url("https://github.com/typelevel/fs2-grpc/blob/master/LICENSE"))),
organizationName := "Gary Coady / Fs2 Grpc Developers",
Expand Down

0 comments on commit d3ebb82

Please sign in to comment.