Commit dd5b7902 authored by Nikolay Igotti's avatar Nikolay Igotti

Fix CI

parent 69709ab9
...@@ -393,11 +393,15 @@ kotlin { ...@@ -393,11 +393,15 @@ kotlin {
val linuxTest by creating { val linuxTest by creating {
dependsOn(nativeTest) dependsOn(nativeTest)
} }
val linuxX64Main by getting { when (targetArch) {
dependsOn(linuxMain) Arch.X64 -> {
} val linuxX64Main by getting {
val linuxX64Test by getting { dependsOn(linuxMain)
dependsOn(linuxTest) }
val linuxX64Test by getting {
dependsOn(linuxTest)
}
}
} }
} }
if (hostOs == OS.MacOS) { if (hostOs == OS.MacOS) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment