Commit dd5b7902 authored by Nikolay Igotti's avatar Nikolay Igotti

Fix CI

parent 69709ab9
...@@ -393,6 +393,8 @@ kotlin { ...@@ -393,6 +393,8 @@ kotlin {
val linuxTest by creating { val linuxTest by creating {
dependsOn(nativeTest) dependsOn(nativeTest)
} }
when (targetArch) {
Arch.X64 -> {
val linuxX64Main by getting { val linuxX64Main by getting {
dependsOn(linuxMain) dependsOn(linuxMain)
} }
...@@ -400,6 +402,8 @@ kotlin { ...@@ -400,6 +402,8 @@ kotlin {
dependsOn(linuxTest) dependsOn(linuxTest)
} }
} }
}
}
if (hostOs == OS.MacOS) { if (hostOs == OS.MacOS) {
val darwinMain by creating { val darwinMain by creating {
dependsOn(nativeMain) dependsOn(nativeMain)
......
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