Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2021-02-22 12:44:33 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2021-02-22 12:45:34 +0300
commitbd061786b21d282434c6942558fe6dbe1cfd2824 (patch)
tree8db932adda48213aaa421a6a176a58d22b599a7d
parentf423f47c5defb17ab570eddeb752ac07410b0931 (diff)
Remove signing from Jenkins MSI pipeline
-rw-r--r--scripts/ci/pipeline/win-package.groovy13
1 files changed, 0 insertions, 13 deletions
diff --git a/scripts/ci/pipeline/win-package.groovy b/scripts/ci/pipeline/win-package.groovy
index e7d25832484..ebd22b4fd2a 100644
--- a/scripts/ci/pipeline/win-package.groovy
+++ b/scripts/ci/pipeline/win-package.groovy
@@ -86,19 +86,6 @@ try {
}
}
- if (isReleaseJob) {
- stage("Signing") {
- timeout(time: 30, unit: 'MINUTES') {
- // waits until the signing job posts completion signal to this pipeline input
- input id: 'FinishedSigning', message: 'Waiting for signing to finish (please be patient)...', submitter: 'monojenkins'
- echo "Signing done."
- }
- }
- }
- else {
- echo "Not a release job, skipping signing."
- }
-
def packageUrlX86 = "https://xamjenkinsartifact.azureedge.net/${jobName}/${monoBranch}/${env.BUILD_NUMBER}/${commitHash}/unsigned/${packageFileNameX86}"
def packageUrlX64 = "https://xamjenkinsartifact.azureedge.net/${jobName}/${monoBranch}/${env.BUILD_NUMBER}/${commitHash}/unsigned/${packageFileNameX64}";