Skip to content

Commit

Permalink
Test if issue #1 is still relevant
Browse files Browse the repository at this point in the history
  • Loading branch information
ViliusSutkus89 committed Aug 8, 2024
1 parent 2f5a2c3 commit 7c06c7b
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions src/main/kotlin/app/opendocument/ConanAndroidGradlePlugin.kt
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,6 @@ class ConanAndroidGradlePlugin: Plugin<Project> {
listOf("armv8", "armv7", "x86", "x86_64").forEach { architecture ->
val conanInstallTask = tasks.register("conanInstall-$architecture", ConanInstallTask::class.java) { conanInstallTask ->
conanInstallTask.arch.set(architecture)

// Some issue with conan's local cache.
// @TODO: isolate and report to conan-client bugtracker
// Execute at least one conanInstall before allowing the rest to run in parallel.
if (architecture != "armv8") {
conanInstallTask.dependsOn(tasks.named("conanInstall-armv8"))
}
}
preBuild.dependsOn(conanInstallTask)
syncTask?.dependsOn(conanInstallTask)
Expand Down

0 comments on commit 7c06c7b

Please sign in to comment.