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

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hörist <philipp@hoerist.com>2023-02-01 00:05:45 +0300
committerPhilipp Hörist <philipp@hoerist.com>2023-02-01 00:05:45 +0300
commit2b64acbff88304be95b20f87b7f852294610e4d5 (patch)
tree815ef8ee34609b3dd9b815ab30e482213c4e5a73 /.gitlab-ci.yml
parent614b5a9e465c09bc371c8e43211296db670eda3f (diff)
ci: Build nightly only if necessary
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml12
1 files changed, 12 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 9b255313b..c920d239e 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -176,7 +176,11 @@ deploy-unix-nightly:
- build-unix
rules:
- if: '$NIGHTLY_BUILD'
+ allow_failure:
+ exit_codes:
+ - 100
script:
+ - release-helper nightly-check
- >
release-helper deploy-to-ftp \
--host=$FTP_HOST \
@@ -194,7 +198,11 @@ deploy-debian-nightly:
rules:
- if: '$DEBIAN_BUILD'
- if: '$NIGHTLY_BUILD'
+ allow_failure:
+ exit_codes:
+ - 100
script:
+ - release-helper nightly-check
- >
release-helper deploy-to-ftp \
--host=$FTP_HOST \
@@ -228,7 +236,11 @@ deploy-windows-nightly:
- build-windows-nightly
rules:
- if: '$NIGHTLY_BUILD'
+ allow_failure:
+ exit_codes:
+ - 100
script:
+ - release-helper nightly-check
- release-helper download-appveyor-artifacts "$(find windows_build/*.json)" windows_build
- rm windows_build/*.json
- >