Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Scala Native 0.5 #1343

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for the PR! Currently we are struggling to upgrade the Scala 3 version due to this issue:


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")
Loading