Skip to content
Snippets Groups Projects
Commit 108aed5b authored by Sylvester Joosten's avatar Sylvester Joosten
Browse files

Fix multipline script elements

parent 81ff5caa
No related branches found
No related tags found
1 merge request!16New feature version
......@@ -18,7 +18,8 @@ default:
- config
before_script:
- mkdir -p .ci-env
- if [ -f .ci-env/release ]; then
- |
if [ -f .ci-env/release ]; then
export BRANCH='release'
export SINGULARITY_DEF='eic-latest.def'
elif [ -f .ci-env/develop ]; then
......@@ -26,12 +27,14 @@ default:
export SINGULARITY_DEF='eic-unstable.def'
else export BRANCH='UNKNOWN'
fi
- if [ -f .ci-env/builder-nc ]; then
- |
if [ -f .ci-env/builder-nc ]; then
export BUILDER_TARGET="${BRANCH}"
else
export BUILDER_TARGET="${BRANCH}-cached"
fi
- if [ -f .ci-env/release-nc ]; then
- |
if [ -f .ci-env/release-nc ]; then
export RELEASE_TARGET="${BRANCH}"
else
export RELEASE_TARGET="${BRANCH}-cached"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment