Skip to content

Commit

Permalink
Disable scala native on 2.13
Browse files Browse the repository at this point in the history
  • Loading branch information
MateuszKubuszok committed Sep 24, 2022
1 parent de95087 commit 3908fa9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ jobs:
jvm: [openjdk@1.17.0]
scalaVersion: ["", 3]
scalaPlatform: ["", JS, Native]
exclude:
- scalaVersion: ""
scalaPlatform: Native
fail-fast: false

env:
Expand Down
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ val testCases = projectMatrix

val pipez = projectMatrix
.in(file("pipez"))
.allVariations(
.someVariations(
List(scala2_13version, scala3version),
List(VirtualAxis.jvm, VirtualAxis.js, VirtualAxis.native)
)
)(MatrixAction((s, a) => s.isScala2 && a.contains(VirtualAxis.native)).Skip)
.enablePlugins(GitVersioning)
.settings(name := "pipez")
.settings(commonSettings: _*)
Expand All @@ -34,10 +34,10 @@ val pipez = projectMatrix

val pipezDsl = projectMatrix
.in(file("pipez-dsl"))
.allVariations(
.someVariations(
List(scala2_13version, scala3version),
List(VirtualAxis.jvm, VirtualAxis.js, VirtualAxis.native)
)
)(MatrixAction((s, a) => s.isScala2 && a.contains(VirtualAxis.native)).Skip)
.enablePlugins(GitVersioning)
.settings(name := "pipez-dsl")
.settings(commonSettings: _*)
Expand Down

0 comments on commit 3908fa9

Please sign in to comment.