Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
workspaces
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ssa
workspaces
Merge requests
!1042
fix ingestion message catching for autocalibration
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
fix ingestion message catching for autocalibration
2.5_ingestion_messaging
into
main
Overview
0
Commits
5
Pipelines
8
Changes
1
Merged
Charlotte Hausman
requested to merge
2.5_ingestion_messaging
into
main
2 years ago
Overview
0
Commits
5
Pipelines
8
Changes
1
Expand
0
0
Merge request reports
Viewing commit
71a1d0a6
Prev
Next
Show latest version
1 file
+
89
−
89
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
71a1d0a6
turn pipeline stages back on
· 71a1d0a6
Charlotte Hausman
authored
2 years ago
.gitlab-ci.yml
+
89
−
89
Options
@@ -7,8 +7,8 @@ stages:
-
test-coverage
-
push
-
deploy-coverage-page
#
- generate-yaml
#
- trigger
-
generate-yaml
-
trigger
-
deploy
# - e2e-test # e2e tests disabled
-
.post
@@ -300,93 +300,93 @@ pages:
rules
:
-
if
:
$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
#
# Generate PEX builder yaml for child pipeline
#
pex generate yaml:
#
stage: generate-yaml
#
image: python:3.8-slim
#
before_script:
#
- apt update && apt install -y git
#
- pip install pyyaml
#
script:
#
- DEPLOY_ENV=${DEPLOY_ENV} ./ci/bin/generate-yaml.py
#
rules:
#
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
#
changes:
#
- apps/cli/executables/pexable/**/*
#
- if: '$CI_COMMIT_TAG =~ /^end-of-sprint-[0-9]+/ || $CI_COMMIT_TAG =~ /[0-9]+\.[0-9]+\.[0-9]+-rc[0-9]+/'
#
variables:
#
# override DEPLOY_ENV
#
DEPLOY_ENV: "test"
#
- if: '$CI_COMMIT_TAG =~ /[0-9]+\.[0-9]+\.[0-9]+$/'
#
variables:
#
DEPLOY_ENV: "prod"
#
artifacts:
#
paths:
#
- generated-pex-build-pipeline.yml
#
#
# Trigger child pipeline based on generated PEX builder yaml
#
pex child pipeline:
#
stage: trigger
#
trigger:
#
include:
#
- artifact: generated-pex-build-pipeline.yml
#
job: pex generate yaml
#
strategy: depend
#
rules:
#
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
#
changes:
#
- apps/cli/executables/pexable/**/*
#
- if: '$CI_COMMIT_TAG =~ /^end-of-sprint-[0-9]+/ || $CI_COMMIT_TAG =~ /[0-9]+\.[0-9]+\.[0-9]+-rc[0-9]+/'
#
variables:
#
# override DEPLOY_ENV
#
DEPLOY_ENV: "test"
#
- if: '$CI_COMMIT_TAG =~ /[0-9]+\.[0-9]+\.[0-9]+$/'
#
variables:
#
DEPLOY_ENV: "prod"
#
#
# Generate go builder yaml for child pipeline
#
go generate yaml:
#
stage: generate-yaml
#
image: python:3.8-slim
#
before_script:
#
- apt update && apt install -y git
#
- pip install pyyaml
#
script:
#
- DEPLOY_ENV=${DEPLOY_ENV} ./ci/bin/generate-go-yaml.py
#
rules:
#
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
#
changes:
#
- apps/cli/executables/go/**/*
#
- if: '$CI_COMMIT_TAG =~ /^end-of-sprint-[0-9]+/ || $CI_COMMIT_TAG =~ /[0-9]+\.[0-9]+\.[0-9]+-rc[0-9]+/'
#
variables:
#
# override DEPLOY_ENV
#
DEPLOY_ENV: "test"
#
- if: '$CI_COMMIT_TAG =~ /[0-9]+\.[0-9]+\.[0-9]+$/'
#
variables:
#
DEPLOY_ENV: "prod"
#
artifacts:
#
paths:
#
- generated-go-build-pipeline.yml
#
#
# Trigger child pipeline based on generated go builder yaml
#
go child pipeline:
#
stage: trigger
#
trigger:
#
include:
#
- artifact: generated-go-build-pipeline.yml
#
job: go generate yaml
#
strategy: depend
#
rules:
#
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
#
changes:
#
- apps/cli/executables/go/**/*
#
- if: '$CI_COMMIT_TAG =~ /^end-of-sprint-[0-9]+/ || $CI_COMMIT_TAG =~ /[0-9]+\.[0-9]+\.[0-9]+-rc[0-9]+/'
#
variables:
#
# override DEPLOY_ENV
#
DEPLOY_ENV: "test"
#
- if: '$CI_COMMIT_TAG =~ /[0-9]+\.[0-9]+\.[0-9]+$/'
#
variables:
#
DEPLOY_ENV: "prod"
# Generate PEX builder yaml for child pipeline
pex generate yaml
:
stage
:
generate-yaml
image
:
python:3.8-slim
before_script
:
-
apt update && apt install -y git
-
pip install pyyaml
script
:
-
DEPLOY_ENV=${DEPLOY_ENV} ./ci/bin/generate-yaml.py
rules
:
-
if
:
$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
changes
:
-
apps/cli/executables/pexable/**/*
-
if
:
'
$CI_COMMIT_TAG
=~
/^end-of-sprint-[0-9]+/
||
$CI_COMMIT_TAG
=~
/[0-9]+\.[0-9]+\.[0-9]+-rc[0-9]+/'
variables
:
# override DEPLOY_ENV
DEPLOY_ENV
:
"
test"
-
if
:
'
$CI_COMMIT_TAG
=~
/[0-9]+\.[0-9]+\.[0-9]+$/'
variables
:
DEPLOY_ENV
:
"
prod"
artifacts
:
paths
:
-
generated-pex-build-pipeline.yml
# Trigger child pipeline based on generated PEX builder yaml
pex child pipeline
:
stage
:
trigger
trigger
:
include
:
-
artifact
:
generated-pex-build-pipeline.yml
job
:
pex generate yaml
strategy
:
depend
rules
:
-
if
:
$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
changes
:
-
apps/cli/executables/pexable/**/*
-
if
:
'
$CI_COMMIT_TAG
=~
/^end-of-sprint-[0-9]+/
||
$CI_COMMIT_TAG
=~
/[0-9]+\.[0-9]+\.[0-9]+-rc[0-9]+/'
variables
:
# override DEPLOY_ENV
DEPLOY_ENV
:
"
test"
-
if
:
'
$CI_COMMIT_TAG
=~
/[0-9]+\.[0-9]+\.[0-9]+$/'
variables
:
DEPLOY_ENV
:
"
prod"
# Generate go builder yaml for child pipeline
go generate yaml
:
stage
:
generate-yaml
image
:
python:3.8-slim
before_script
:
-
apt update && apt install -y git
-
pip install pyyaml
script
:
-
DEPLOY_ENV=${DEPLOY_ENV} ./ci/bin/generate-go-yaml.py
rules
:
-
if
:
$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
changes
:
-
apps/cli/executables/go/**/*
-
if
:
'
$CI_COMMIT_TAG
=~
/^end-of-sprint-[0-9]+/
||
$CI_COMMIT_TAG
=~
/[0-9]+\.[0-9]+\.[0-9]+-rc[0-9]+/'
variables
:
# override DEPLOY_ENV
DEPLOY_ENV
:
"
test"
-
if
:
'
$CI_COMMIT_TAG
=~
/[0-9]+\.[0-9]+\.[0-9]+$/'
variables
:
DEPLOY_ENV
:
"
prod"
artifacts
:
paths
:
-
generated-go-build-pipeline.yml
# Trigger child pipeline based on generated go builder yaml
go child pipeline
:
stage
:
trigger
trigger
:
include
:
-
artifact
:
generated-go-build-pipeline.yml
job
:
go generate yaml
strategy
:
depend
rules
:
-
if
:
$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
changes
:
-
apps/cli/executables/go/**/*
-
if
:
'
$CI_COMMIT_TAG
=~
/^end-of-sprint-[0-9]+/
||
$CI_COMMIT_TAG
=~
/[0-9]+\.[0-9]+\.[0-9]+-rc[0-9]+/'
variables
:
# override DEPLOY_ENV
DEPLOY_ENV
:
"
test"
-
if
:
'
$CI_COMMIT_TAG
=~
/[0-9]+\.[0-9]+\.[0-9]+$/'
variables
:
DEPLOY_ENV
:
"
prod"
# Development
deploy
:
Loading