Skip to content

Commit 265cc2e

Browse files
committed
drop Scala Native support on Scala 2.11
1 parent 81034be commit 265cc2e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ jobs:
1515
platform: [JVM, JS, Native]
1616
mode: [normal]
1717
exclude:
18+
- scala: 2.11.x
19+
platform: Native
1820
- java: 11
1921
platform: JS
2022
- java: 11

build.sbt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ lazy val root = project
2323
.aggregate(
2424
compat211JVM,
2525
compat211JS,
26-
compat211Native,
2726
compat212JVM,
2827
compat212JS,
2928
compat212Native,
@@ -152,14 +151,13 @@ lazy val compat = new MultiScalaCrossProject(
152151
).nativeEnablePlugins(ScalaNativeJUnitPlugin)
153152
)
154153

155-
val compat211 = compat(Seq(JSPlatform, JVMPlatform, NativePlatform), scala211)
154+
val compat211 = compat(Seq(JSPlatform, JVMPlatform ), scala211)
156155
val compat212 = compat(Seq(JSPlatform, JVMPlatform, NativePlatform), scala212)
157156
val compat213 = compat(Seq(JSPlatform, JVMPlatform, NativePlatform), scala213)
158157
val compat3 = compat(Seq(JSPlatform, JVMPlatform, NativePlatform), scala3)
159158

160159
lazy val compat211JVM = compat211.jvm
161160
lazy val compat211JS = compat211.js
162-
lazy val compat211Native = compat211.native
163161
lazy val compat212JVM = compat212.jvm
164162
lazy val compat212JS = compat212.js
165163
lazy val compat212Native = compat212.native

0 commit comments

Comments
 (0)