Skip to content

Commit

Permalink
see if this fixes the CI run
Browse files Browse the repository at this point in the history
Signed-off-by: Alfredo Gutierrez <[email protected]>
  • Loading branch information
AlfredoG87 committed Sep 9, 2024
1 parent be78b8e commit 724838a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions simulator/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,9 @@ tasks.register<Copy>("untarTestBlockStream") {
tasks.named("processResources") { dependsOn(tasks.named("untarTestBlockStream")) }

tasks.named("sourcesJar") { dependsOn(tasks.named("untarTestBlockStream")) }

// Ensure untar runs before test tasks
tasks.named("test") {
dependsOn(tasks.named("untarTestBlockStream"))
mustRunAfter(tasks.named("processResources"))
}

0 comments on commit 724838a

Please sign in to comment.