Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
shuyama1 committed Apr 30, 2024
1 parent 902508d commit 055fd18
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ fun ParametrizedWithType.terraformLoggingParameters(config: AccTestConfiguration

// Set where logs are sent
text("PROVIDER_NAME", providerName)
text("env.TF_LOG_PATH_MASK", "%system.teamcity.build.checkoutDir%/debug-%PROVIDER_NAME%-%env.BUILD_NUMBER%-%s.txt") // .txt extension used to make artifacts open in browser, instead of download
text("env.TF_LOG_PATH_MASK", "%system.teamcity.build.checkoutDir%/debug-%PROVIDER_NAME%-%env.BUILD_NUMBER%-%teamcity.build.id%-%s.txt") // .txt extension used to make artifacts open in browser, instead of download

hiddenPasswordVariable("env.GOOGLE_CREDENTIALS_GCS", config.credentialsGCS, "The Google credentials for copying debug logs to the GCS bucket")
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ class NightlyTriggerConfiguration(
fun Triggers.runNightly(config: NightlyTriggerConfiguration) {

schedule{
enabled = config.nightlyTestsEnabled
// enabled = config.nightlyTestsEnabled
enabled = false
branchFilter = "+:" + config.branch // returns "+:/refs/heads/main" if default
triggerBuild = always() // Run build even if no new commits/pending changes
withPendingChangesOnly = false
Expand Down

0 comments on commit 055fd18

Please sign in to comment.