Skip to content

Commit

Permalink
Scala Native 0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
mio-19 committed Aug 23, 2024
1 parent 52b3692 commit 72ba7de
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 20 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [2.13.10, 3.2.2]
scala: [2.13.10, 3.3.3]
java: [temurin@8, temurin@11, temurin@17]
project: [rootJS, rootJVM, rootNative]
exclude:
- scala: 3.2.2
- scala: 3.3.3
java: temurin@11
- scala: 3.2.2
- scala: 3.3.3
java: temurin@17
- project: rootJS
java: temurin@11
Expand Down Expand Up @@ -257,32 +257,32 @@ jobs:
tar xf targets.tar
rm targets.tar
- name: Download target directories (3.2.2, rootJS)
- name: Download target directories (3.3.3, rootJS)
uses: actions/download-artifact@v3
with:
name: target-${{ matrix.os }}-${{ matrix.java }}-3.2.2-rootJS
name: target-${{ matrix.os }}-${{ matrix.java }}-3.3.3-rootJS

- name: Inflate target directories (3.2.2, rootJS)
- name: Inflate target directories (3.3.3, rootJS)
run: |
tar xf targets.tar
rm targets.tar
- name: Download target directories (3.2.2, rootJVM)
- name: Download target directories (3.3.3, rootJVM)
uses: actions/download-artifact@v3
with:
name: target-${{ matrix.os }}-${{ matrix.java }}-3.2.2-rootJVM
name: target-${{ matrix.os }}-${{ matrix.java }}-3.3.3-rootJVM

- name: Inflate target directories (3.2.2, rootJVM)
- name: Inflate target directories (3.3.3, rootJVM)
run: |
tar xf targets.tar
rm targets.tar
- name: Download target directories (3.2.2, rootNative)
- name: Download target directories (3.3.3, rootNative)
uses: actions/download-artifact@v3
with:
name: target-${{ matrix.os }}-${{ matrix.java }}-3.2.2-rootNative
name: target-${{ matrix.os }}-${{ matrix.java }}-3.3.3-rootNative

- name: Inflate target directories (3.2.2, rootNative)
- name: Inflate target directories (3.3.3, rootNative)
run: |
tar xf targets.tar
rm targets.tar
Expand Down
10 changes: 5 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,19 @@ val header = """|***************************************************************

import scala.language.existentials

lazy val scalaCheckVersion = "1.17.0"
lazy val scalaCheckVersion = "1.18.0"

lazy val munit = "1.0.0-M7"
lazy val munitDiscipline = "2.0.0-M3"
lazy val munit = "1.0.1"
lazy val munitDiscipline = "2.0.0"

lazy val algebraVersion = "2.9.0"
lazy val algebraVersion = "2.12.0"

lazy val apfloatVersion = "1.10.1"
lazy val jscienceVersion = "4.3.1"
lazy val apacheCommonsMath3Version = "3.6.1"

val Scala213 = "2.13.10"
val Scala3 = "3.2.2"
val Scala3 = "3.3.3"

Global / onChangedBuildSource := ReloadOnSourceChanges

Expand Down
6 changes: 3 additions & 3 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ val sbtTypelevelVersion = "0.4.21"
addSbtPlugin("org.typelevel" % "sbt-typelevel" % sbtTypelevelVersion)
addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % sbtTypelevelVersion)

addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.3.1")
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.16")
addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.3.2")
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.5.5")

addSbtPlugin("com.github.sbt" % "sbt-unidoc" % "0.5.0")
addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.7")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.13.2")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.16.0")

0 comments on commit 72ba7de

Please sign in to comment.