diff --git a/build.gradle b/build.gradle index f967d61..e42f84f 100644 --- a/build.gradle +++ b/build.gradle @@ -135,9 +135,10 @@ tasks.withType(Test) { // shared object file systemProperty "java.library.path", "target/current/" - // Don"t capture the standard output. testLogging { outputs.upToDateWhen { false } + + // Don"t capture the standard output. showStandardStreams = true } } @@ -150,6 +151,8 @@ jar.doLast() { println("::set-output name=name::" + jar_name) } +jar.outputs.upToDateWhen { false } + // We build the integration before running any test compileTestJava.dependsOn buildRust processResources.dependsOn copyAllArtifacts