Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
open-source
yams
Commits
ef618b71df5b
Commit
6bb66436
authored
May 28, 2020
by
Laurent Peuch
Browse files
[gitlab-ci] refactor to use except:variables instead of bash if
parent
1b4f208e2b2d
Changes
1
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
ef618b71
...
...
@@ -32,14 +32,20 @@ mypy:
script
:
tox -e mypy
trigger-other-pipelines
:
except
:
variables
:
-
$TRIGGERED_FROM_OTHER_PROJECT
stage
:
after-tests
script
:
-
"
if
[
-z
\"
${TRIGGERED_FROM_OTHER_PROJECT}
\"
];
then
curl
-X
POST
-F
\
"
variables[TRIGGERED_FROM_OTHER_PROJECT]=true
\
"
-F
token=$CUBICWEB_PIPELINE_TRIGGER_TOKEN
-F
ref=branch/default
https://forge.extranet.logilab.fr/api/v4/projects/385/trigger/pipeline
;
fi"
-
curl -X POST -F "variables[TRIGGERED_FROM_OTHER_PROJECT]=true" -F token=$CUBICWEB_PIPELINE_TRIGGER_TOKEN -F ref=branch/default https://forge.extranet.logilab.fr/api/v4/projects/385/trigger/pipeline
trigger-readthedocs
:
only
:
refs
:
-
branch/default
except
:
variables
:
-
$TRIGGERED_FROM_OTHER_PROJECT
stage
:
after-tests
script
:
-
"
if
[
-z
\"
${TRIGGERED_FROM_OTHER_PROJECT}
\"
];
then
curl
-X
POST
-d
\
"
token=${READTHEDOCS_TOKEN}
\
"
https://readthedocs.org/api/v2/webhook/yams/109442/
;
fi"
-
curl -X POST -d "token=${READTHEDOCS_TOKEN}" https://readthedocs.org/api/v2/webhook/yams/109442/
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment