Skip to content

Commit

Permalink
Merge pull request #75 from LuciferYang/add-2.12.17
Browse files Browse the repository at this point in the history
Add Scala 2.12.17 support
  • Loading branch information
ghik authored Sep 15, 2022
2 parents fde55f7 + 99ad23a commit f5791aa
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
11 changes: 11 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ jobs:
- 2.13.4
- 2.13.3
- 2.13.2
- 2.12.17
- 2.12.16
- 2.12.15
- 2.12.14
Expand Down Expand Up @@ -179,6 +180,16 @@ jobs:
tar xf targets.tar
rm targets.tar
- name: Download target directories (2.12.17)
uses: actions/download-artifact@v2
with:
name: target-${{ matrix.os }}-2.12.17-${{ matrix.java }}

- name: Inflate target directories (2.12.17)
run: |
tar xf targets.tar
rm targets.tar
- name: Download target directories (2.12.16)
uses: actions/download-artifact@v2
with:
Expand Down
3 changes: 2 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ def crossSources = Def.settings(
inThisBuild(Seq(
organization := "com.github.ghik",
scalaVersion := crossScalaVersions.value.head,
crossScalaVersions := Seq("2.13.8", "2.13.7", "2.13.6", "2.13.5", "2.13.4", "2.13.3", "2.13.2", "2.12.16", "2.12.15", "2.12.14", "2.12.13", "2.11.12"),
crossScalaVersions := Seq("2.13.8", "2.13.7", "2.13.6", "2.13.5", "2.13.4", "2.13.3", "2.13.2",
"2.12.17", "2.12.16", "2.12.15", "2.12.14", "2.12.13", "2.11.12"),

githubWorkflowTargetTags ++= Seq("v*"),
githubWorkflowJavaVersions := Seq("[email protected]"),
Expand Down

0 comments on commit f5791aa

Please sign in to comment.