Commit dd5b7902 authored by Nikolay Igotti's avatar Nikolay Igotti

Fix CI

parent 69709ab9
......@@ -393,11 +393,15 @@ kotlin {
val linuxTest by creating {
dependsOn(nativeTest)
}
val linuxX64Main by getting {
dependsOn(linuxMain)
}
val linuxX64Test by getting {
dependsOn(linuxTest)
when (targetArch) {
Arch.X64 -> {
val linuxX64Main by getting {
dependsOn(linuxMain)
}
val linuxX64Test by getting {
dependsOn(linuxTest)
}
}
}
}
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