Skip to content
Snippets Groups Projects
Verified Commit 37d6a940 authored by Antoine R. Dumont's avatar Antoine R. Dumont
Browse files

swh-apps-build-docker-image: Allow empty commit

That would ease triggering back another job (to the expanse of creating more tags on the
same commit which should be fine).

Refs. swh/infra/sysadm-environment#4524
parent 0047efc1
No related branches found
No related tags found
No related merge requests found
......@@ -114,10 +114,13 @@ pipeline {
git checkout master
"""
unstash "${application}-requirements-frozen"
commit_msg = "'${application}-${image_version}: Build image with frozen set requirements'"
sh """
git add ${frozen_set_filepath}
git commit --no-verify -m '${application}-${image_version}: Build image with frozen set requirements'
git log
# Skipping empty commit to ease reproducibility even without changes
git commit --no-verify -m ${commit_msg} || echo "Skip empty commit"
"""
}
}
......
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