Skip to content
Snippets Groups Projects

initial release

Merged Ben Morrice requested to merge testing into master
12 files
+ 288
0
Compare changes
  • Side-by-side
  • Inline
Files
12
.gitlab-ci.yml 0 → 100644
+ 31
0
---
include: 'https://gitlab.cern.ch/linuxsupport/cronjobs/base/raw/master/gitlab-ci.yml'
build_stream8_backups:
stage: build
tags:
- docker-image-build
script: "echo" # unused but this line is required by GitLab CI
variables:
CONTEXT_DIR: stream8_backups
TO: $CI_REGISTRY_IMAGE/stream8_backups:$CI_COMMIT_REF_NAME
deploy:
extends: .nomad
stage: deploy
script:
- for j in *.nomad; do echo -e "\n${j}:"; nomad job run <(envsubst < $j); done
only:
- tags
- master
deploy_dev:
extends: .nomad
stage: deploy
script:
- for j in *.nomad; do echo -e "\n${j}:"; nomad job run <(envsubst < $j); done
except:
- tags
- master
when: manual
Loading