Skip to content

Commit 8317988

Browse files
authored
Remove support for 2.11 (#383)
Also simplify the testing matrix. We will still publish for those old versions, but it's a bit crazy to have a matrix with 60 some builds
1 parent 68b687a commit 8317988

File tree

2 files changed

+2
-13
lines changed

2 files changed

+2
-13
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -19,22 +19,12 @@ jobs:
1919
os: [ 'ubuntu-latest', 'windows-latest' ]
2020
java: [ '8', '11' ]
2121
scala: [
22-
{ version: '2.11.12' },
2322
{ version: '2.12.15' },
2423
{ version: '2.12.14' },
2524
{ version: '2.12.13' },
26-
{ version: '2.12.12' },
27-
{ version: '2.12.11' },
28-
{ version: '2.12.10' },
29-
{ version: '2.12.9' },
30-
{ version: '2.12.8' },
3125
{ version: '2.13.6' },
3226
{ version: '2.13.5' },
33-
{ version: '2.13.4' },
34-
{ version: '2.13.3' },
35-
{ version: '2.13.2' },
36-
{ version: '2.13.1' },
37-
{ version: '2.13.0' }
27+
{ version: '2.13.4' }
3828
]
3929
steps:
4030
- name: checkout the repo

build.sbt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import sbtcrossproject.CrossType
44
val scalatestVersion = "3.2.10"
55
val scalametaVersion = "4.4.28"
66
val defaultScala213 = "2.13.6"
7-
val bin211 = Seq("2.11.12")
87
val bin212 =
98
Seq(
109
"2.12.15",
@@ -76,7 +75,7 @@ lazy val sharedSettings = List(
7675
scalacOptions.value
7776
}
7877
},
79-
crossScalaVersions := bin211 ++ bin212 ++ bin213
78+
crossScalaVersions := bin212 ++ bin213
8079
)
8180

8281
lazy val root = Project("scalac-scoverage", file("."))

0 commit comments

Comments
 (0)