Skip to content

Commit

Permalink
Automatically pass tags.yaml file
Browse files Browse the repository at this point in the history
  • Loading branch information
badboy committed Nov 3, 2021
1 parent 5d521a4 commit cbf1bd5
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,8 @@ except:
} else {
return [
"${project.projectDir}/metrics.yaml",
"${project.projectDir}/pings.yaml"
"${project.projectDir}/pings.yaml",
"${project.projectDir}/tags.yaml"
]
}
}
Expand Down Expand Up @@ -206,7 +207,7 @@ except:
}

// Only generate build info for applications, not for libraries.
// From android-gradle 7.0 on the `VERSION_CODE` and `VERSION_NAME` fields
// From android-gradle 7.0 on the `VERSION_CODE` and `VERSION_NAME` fields
// are not set for libraries anymore
if (!isApplication) {
args "-s"
Expand Down Expand Up @@ -442,7 +443,7 @@ except:
// The Bootstrap_CONDA* tasks all install miniconda to the
// same place, so they can't run at the same time. This
// holds a semaphore while running the task to make sure
// only one of these classes of tasks runs at the same time.
// only one of these classes of tasks runs at the same time.
// Solution proposed in this Gradle bug:
// https://github.com/gradle/gradle/issues/7047#issuecomment-430139316
task.doFirst { bootstrapMinicondaSemaphore.acquire() }
Expand Down

0 comments on commit cbf1bd5

Please # to comment.