Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
stream8_backups
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
linuxsupport
cronjobs
stream8_backups
Merge requests
!1
initial release
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
initial release
testing
into
master
Overview
0
Commits
4
Pipelines
2
Changes
12
Merged
Ben Morrice
requested to merge
testing
into
master
4 years ago
Overview
0
Commits
4
Pipelines
2
Changes
12
Expand
0
0
Merge request reports
Compare
master
version 1
36c8fc3a
4 years ago
master (base)
and
latest version
latest version
c0bb4312
4 commits,
4 years ago
version 1
36c8fc3a
4 commits,
4 years ago
12 files
+
288
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
12
Search (e.g. *.vue) (Ctrl+P)
.gitlab-ci.yml
0 → 100644
+
31
−
0
Options
---
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