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:04 +0300
commitb1e2a54c6a5cb71bb794745c010a4d3234fc038f (patch)
tree39365add979873f4f9a7ef64bf88f528828dc846
parenta8f265550b3b7fb82dd923fd47279248e6008eb3 (diff)
Remove signing from Jenkins MSI pipelinemono-6.12.0.124
(cherry picked from commit 08415a98f693b3b7c2de693dc107659e1353cf53)
-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}";