From 7eb533560daa4659ab6eedadee86de73cc1cc6d2 Mon Sep 17 00:00:00 2001 From: wrd Date: Fri, 6 Dec 2024 17:05:04 +0100 Subject: [PATCH] updates --- ci/Android.Jenkinsfile | 2 +- ci/Ios.Jenkinsfile | 2 +- ci/Publish-MailDesktopArtifacts.Jenkinsfile | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ci/Android.Jenkinsfile b/ci/Android.Jenkinsfile index 8b840a1329c0..204a7cb15bf5 100644 --- a/ci/Android.Jenkinsfile +++ b/ci/Android.Jenkinsfile @@ -61,7 +61,7 @@ pipeline { } } stage('Build') { - parallel { + stages { stage('Staging') { when { expression { return params.STAGING } } environment { diff --git a/ci/Ios.Jenkinsfile b/ci/Ios.Jenkinsfile index 36c1feca7f9b..4ddb88322d6b 100644 --- a/ci/Ios.Jenkinsfile +++ b/ci/Ios.Jenkinsfile @@ -71,7 +71,7 @@ pipeline { LC_ALL = "en_US.UTF-8" LANG = "en_US.UTF-8" } - parallel { + stages { stage('Staging') { when { expression { return params.STAGING } } agent { diff --git a/ci/Publish-MailDesktopArtifacts.Jenkinsfile b/ci/Publish-MailDesktopArtifacts.Jenkinsfile index 2f97b369e1fb..8084cfa6f694 100644 --- a/ci/Publish-MailDesktopArtifacts.Jenkinsfile +++ b/ci/Publish-MailDesktopArtifacts.Jenkinsfile @@ -47,7 +47,7 @@ pipeline { } } } - stage('Preparation for build deb and publish notes') { + stage('Setup') { agent { label 'master' } @@ -58,7 +58,7 @@ pipeline { } } } - stage ('Build deb and publish release notes draft') { + stage ('Setup docker') { when { expression { return params.GITHUB_RELEASE || params.DEB } } agent { dockerfile { @@ -138,7 +138,7 @@ pipeline { } // steps } // stage publish release notes draft } // stages - } // stage build deb and publish release notes + } // stage setup docker } // stages } // pipeline