Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable snapshot image creation for PUSH and TIMER [pike] #3507

Open
wants to merge 1 commit into
base: pike
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions gating/check/post_deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,10 @@ else
fi
echo "#### END DSTAT CHART GENERATION ###"

# Only enable snapshot when triggered by a commit push.
# This is to enable image updates whenever a PR is merged, but not before
if [[ "${RE_JOB_TRIGGER:-USER}" == "PUSH" ]] && [[ ${RE_JOB_STATUS:-SUCCESS} == "SUCCESS" ]]; then
# Only enable snapshot when triggered by a commit push or a periodic job,
# and only when the job succeeded. This is to enable snapshot image updates
# based on committed code that works.
if [[ "${RE_JOB_STATUS:-UNKNOWN}" == "SUCCESS" && ( "${RE_JOB_TRIGGER:-USER}" == "PUSH" || "${RE_JOB_TRIGGER:-USER}" == "TIMER" ) ]]; then
echo "### BEGIN SNAPSHOT PREP ###"
mkdir -p /gating/thaw

Expand Down