Skip to content

Commit

Permalink
(build) Alter signing steps
Browse files Browse the repository at this point in the history
In the previous round of changes, we were a little too quick to remove
the signing step from the main build configuration.  This is needed, as
well as calling build.official.bat, in order to get an official
release.  The other build configurations, except the signing scripts,
one, don't need the signing keys in place, so this has also been done
in this commit.
  • Loading branch information
gep13 committed Jun 13, 2024
1 parent fb6e8a9 commit b9b224b
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .teamcity/settings.kts
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,15 @@ object ChocolateyGUI : BuildType({
}
}

step {
name = "Include Signing Keys"
type = "PrepareSigningEnvironment"
}

script {
name = "Call Cake"
scriptContent = """
build.bat --verbosity=diagnostic --target=CI --testExecutionType=unit --shouldRunOpenCover=false
build.official.bat --verbosity=diagnostic --target=CI --testExecutionType=unit --shouldRunOpenCover=false
""".trimIndent()
}
}
Expand Down Expand Up @@ -117,15 +122,10 @@ object ChocolateyGUISchd : BuildType({
}
}

step {
name = "Include Signing Keys"
type = "PrepareSigningEnvironment"
}

script {
name = "Call Cake"
scriptContent = """
build.official.bat --verbosity=diagnostic --target=CI --testExecutionType=all --shouldRunOpenCover=false --shouldRunAnalyze=false --shouldRunIlMerge=false --shouldObfuscateOutputAssemblies=false --shouldRunChocolatey=false --shouldRunNuGet=false --shouldAuthenticodeSignMsis=false --shouldAuthenticodeSignOutputAssemblies=false --shouldAuthenticodeSignPowerShellScripts=false
build.bat --verbosity=diagnostic --target=CI --testExecutionType=all --shouldRunOpenCover=false --shouldRunAnalyze=false --shouldRunIlMerge=false --shouldObfuscateOutputAssemblies=false --shouldRunChocolatey=false --shouldRunNuGet=false --shouldAuthenticodeSignMsis=false --shouldAuthenticodeSignOutputAssemblies=false --shouldAuthenticodeSignPowerShellScripts=false
""".trimIndent()
}
}
Expand Down

0 comments on commit b9b224b

Please sign in to comment.