Skip to content
This repository has been archived by the owner on Jul 16, 2022. It is now read-only.

Commit

Permalink
Deactivate dotty for Scala JS client
Browse files Browse the repository at this point in the history
  • Loading branch information
atooni committed Feb 28, 2022
1 parent 0d674d0 commit 71e9ad9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
strategy:
fail-fast: false
matrix:
java: ['adopt@1.8', 'adopt@1.11']
java: ['[email protected]']
scala: ['2.12.15', '2.13.8']
if: github.event_name != 'pull_request'
steps:
Expand Down
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ lazy val client =
.in(file("client"))
.settings(
commonSettings,
crossScalaVersions := Seq(Version.Scala213, Version.ScalaDotty),
crossScalaVersions := Seq(Version.Scala213),
stdSettings("zio.zmx.client"),
testFrameworks += new TestFramework("zio.test.sbt.ZTestFramework"),
libraryDependencies ++= Seq(
Expand All @@ -75,7 +75,7 @@ lazy val client =
)
)
.jvmSettings(
crossScalaVersions := Seq(Version.Scala213, Version.ScalaDotty),
crossScalaVersions := Seq(Version.Scala213),
libraryDependencies ++= Seq(
"dev.zio" %% "zio" % Version.zio,
"io.d11" %% "zhttp" % Version.zioHttp
Expand All @@ -84,7 +84,7 @@ lazy val client =
run / javaOptions += "-Djava.net.preferIPv4Stack=true"
)
.jsSettings(
crossScalaVersions := Seq(Version.Scala213, Version.ScalaDotty),
crossScalaVersions := Seq(Version.Scala213),
libraryDependencies ++= Seq(
"com.raquo" %%% "airstream" % Version.airStream,
"com.raquo" %%% "laminar" % Version.laminar,
Expand Down

0 comments on commit 71e9ad9

Please sign in to comment.