summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2019-04-20 08:31:38 +0200
committerThomas Haller <thaller@redhat.com>2019-04-20 08:53:37 +0200
commit2a2c58339b0007578026c6fb8dda824c0a76883d (patch)
treef4371ec930c9d9e3790c5d81245cf0387d57cc10
parent01e7cb11bfe7fa5d7166626c05bc78ae0f66a29e (diff)
downloadNetworkManager-2a2c58339b0007578026c6fb8dda824c0a76883d.tar.gz
gitlab-ci: don't use "test && cmd" in build step
We don't want stesp to return an error, which is what "test && cmd" does, if the test evaluates to false. Instead, use "! test || cmd" which has more the semantics that we want.
-rw-r--r--.gitlab-ci.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index ffcf652117..5c733d62d2 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -30,8 +30,8 @@ stages:
- date '+%Y%m%d-%H%M%S'; locale -a
- date '+%Y%m%d-%H%M%S'; env
- date '+%Y%m%d-%H%M%S'; meson --version
- - date '+%Y%m%d-%H%M%S'; which dnf && dnf list --installed
- - date '+%Y%m%d-%H%M%S'; which dpkg && dpkg -l
+ - date '+%Y%m%d-%H%M%S'; ! which dnf || dnf list --installed
+ - date '+%Y%m%d-%H%M%S'; ! which dpkg || dpkg -l
- date '+%Y%m%d-%H%M%S'; git clean -fdx ; BUILD_TYPE=autotools CC=gcc WITH_DOCS=1 contrib/scripts/nm-ci-run.sh
- date '+%Y%m%d-%H%M%S'; rm -rf /tmp/nm-docs-html; mv build/INST/share/gtk-doc/html /tmp/nm-docs-html
- date '+%Y%m%d-%H%M%S'; git clean -fdx ; BUILD_TYPE=meson CC=gcc WITH_DOCS=1 contrib/scripts/nm-ci-run.sh