Skip to content
Snippets Groups Projects
Commit 1facf1b7 authored by Mayra Cabrera's avatar Mayra Cabrera :zero:
Browse files

Save QA issue URL in the cache

As part of
gitlab-com/gl-infra/delivery#1490,
release-tools will trigger QA pipelines from multiple projects, one of
the arguments required in almost all of them is the QA issue URL. This
issue is created before the fleet is updated by triggering a job from
the deployer pipeline to the release-tools. This commit stores the QA
issue URL in the cache so it can be shared in upcoming jobs.
parent 6fc261da
No related branches found
No related tags found
Loading
......@@ -58,13 +58,18 @@ track-deployment:
stage: automation
script:
- bundle exec rake "release:track_deployment[$DEPLOY_ENVIRONMENT, $DEPLOY_STATUS, $DEPLOY_VERSION]"
only:
variables:
- $TRACK_DEPLOYMENT == "true"
artifacts:
expire_in: 1d
paths:
- QA_ISSUE_URL
only:
variables:
- $TRACK_DEPLOYMENT == "true"
cache:
key: 'qa_issue_url'
paths:
- QA_ISSUE_URL
- vendor/ruby
release:tag_scheduled_rc:
extends: .with-bundle
......
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