Skip to content

Commit

Permalink
Drop Scala 2.12
Browse files Browse the repository at this point in the history
  • Loading branch information
rossabaker committed Jan 4, 2023
1 parent c89b754 commit 172ee91
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 17 deletions.
16 changes: 1 addition & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,9 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
scala: [2.12.16, 2.13.8, 3.2.1]
scala: [2.13.8, 3.2.1]
java: [temurin@8, temurin@11, temurin@17]
exclude:
- scala: 2.12.16
java: temurin@11
- scala: 2.12.16
java: temurin@17
- scala: 3.2.1
java: temurin@11
- scala: 3.2.1
Expand Down Expand Up @@ -224,16 +220,6 @@ jobs:
~/Library/Caches/Coursier/v1
key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }}

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

- name: Inflate target directories (2.12.16)
run: |
tar xf targets.tar
rm targets.tar
- name: Download target directories (2.13.8)
uses: actions/download-artifact@v2
with:
Expand Down
3 changes: 1 addition & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,8 @@ ThisBuild / developers := List(
)
ThisBuild / startYear := Some(2014)

val Scala212 = "2.12.16"
val Scala213 = "2.13.8"
ThisBuild / crossScalaVersions := Seq(Scala212, Scala213, "3.2.1")
ThisBuild / crossScalaVersions := Seq(Scala213, "3.2.1")
ThisBuild / scalaVersion := Scala213

lazy val root = project.in(file(".")).aggregate(scalaXml2).enablePlugins(NoPublishPlugin)
Expand Down

0 comments on commit 172ee91

Please sign in to comment.