Skip to content

Commit

Permalink
Add debug print for CI#
Browse files Browse the repository at this point in the history
  • Loading branch information
sebaslogen committed Jan 12, 2024
1 parent 8882ac8 commit 197351a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,11 @@ plugins {
val sampleModuleName = "sample"

apiValidation {
if (System.getenv("JITPACK") == null || System.getenv("GITHUB_WORKFLOW") == null )
if (System.getenv("JITPACK") == null || System.getenv("GITHUB_WORKFLOW") == null ) {
println("ApiValidation is being ignored for module $sampleModuleName in local builds")
// This block is only applicable on local builds
ignoredProjects.addAll(listOf(sampleModuleName))
}
}

tasks.register("clean", Delete::class) {
Expand Down

0 comments on commit 197351a

Please sign in to comment.