Skip to content

Commit

Permalink
Update scala native
Browse files Browse the repository at this point in the history
  • Loading branch information
cquiroz committed May 8, 2024
1 parent cafad1b commit 074d4ae
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 13 deletions.
12 changes: 1 addition & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
scala: [2.12.19, 2.13.14, 3.4.1]
scala: [2.13.14, 3.4.1]
java: [temurin@8, temurin@17]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -99,16 +99,6 @@ jobs:
java-version: 17
cache: sbt

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

- name: Inflate target directories (2.12.19)
run: |
tar xf targets.tar
rm targets.tar
- name: Download target directories (2.13.14)
uses: actions/download-artifact@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Global / onChangedBuildSource := ReloadOnSourceChanges
lazy val scalaVersion213 = "2.13.14"
lazy val scalaVersion3 = "3.4.1"
ThisBuild / scalaVersion := scalaVersion213
ThisBuild / crossScalaVersions := Seq("2.12.19", scalaVersion213, scalaVersion3)
ThisBuild / crossScalaVersions := Seq(scalaVersion213, scalaVersion3)

ThisBuild / githubWorkflowTargetTags ++= Seq("v*")
ThisBuild / githubWorkflowPublishTargetBranches +=
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.16.0")
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2")
addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.3.2")
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.17")
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.5.1")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")
addSbtPlugin("io.github.cquiroz" % "sbt-locales" % "4.2.0")
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12")
Expand Down

0 comments on commit 074d4ae

Please sign in to comment.