Skip to content

Commit 3719a0d

Browse files
committed
Give up on sbt 1.2.x
The last 1.2.x release was in 2018!
1 parent 726d34c commit 3719a0d

File tree

6 files changed

+1
-8
lines changed

6 files changed

+1
-8
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,9 @@ jobs:
1010
fail-fast: false
1111
matrix:
1212
include:
13-
- sbt_version: 1.2.8
14-
test_groups: 'basic/*'
1513
- sbt_version: 1.3.13
16-
test_groups: 'basic/* 1.3+/*'
1714
- sbt_version: 1.4.0
18-
test_groups: 'basic/* 1.3+/*'
1915
- sbt_version: 1.8.3
20-
test_groups: 'basic/* 1.3+/*'
2116

2217
runs-on: ubuntu-latest
2318
steps:
@@ -27,4 +22,4 @@ jobs:
2722
distribution: adopt
2823
java-version: 17
2924
- name: Test
30-
run: sbt -Dfile.encoding=UTF8 -J-XX:ReservedCodeCacheSize=256M "^^${{ matrix.sbt_version }}" "scripted ${{ matrix.test_groups }}"
25+
run: sbt -Dfile.encoding=UTF8 -J-XX:ReservedCodeCacheSize=256M "^^${{ matrix.sbt_version }}" "scripted basic/*"

build.sbt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,11 @@ import ReleaseTransformations._
22

33
enablePlugins(SbtPlugin)
44

5-
val latestSbt_1_2_x_version = "1.2.8"
65
val latestSbt_1_3_x_version = "1.3.13"
76
val latestSbt_1_4_x_version = "1.4.0"
87
val latestSbt_1_8_x_version = "1.8.3"
98

109
crossSbtVersions := Seq(
11-
latestSbt_1_2_x_version,
1210
latestSbt_1_3_x_version,
1311
latestSbt_1_4_x_version,
1412
latestSbt_1_8_x_version

0 commit comments

Comments
 (0)