Skip to content

Commit

Permalink
common: force Docker rebuild on docker_rebuild.yml modifications
Browse files Browse the repository at this point in the history
Signed-off-by: Tomasz Gromadzki <tomasz.gromadzki@intel.com>
  • Loading branch information
grom72 committed Jul 18, 2023
1 parent eeb4b41 commit 356737f
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/docker_rebuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,14 @@ on:
- master
paths:
- 'utils/docker/images/**'
- '.github/workflows/docker_rebuild.yml'

push:
branches:
- master
paths:
- 'utils/docker/images/**'
- '.github/workflows/docker_rebuild.yml'
schedule:
# run this job at 22:00 UTC every other day (hopefully just before the nightly)
- cron: '0 22 */2 * *'
Expand Down
11 changes: 8 additions & 3 deletions utils/docker/pull-or-rebuild-image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,16 +61,21 @@ function push_image {
# - not a pull_request event,
# - and PUSH_IMAGE flag was set for current build.
if [[ "${CI_REPO_SLUG}" == "${GITHUB_REPO}" \
&& (${CI_BRANCH} == stable-* || ${CI_BRANCH} == devel-* || ${CI_BRANCH} == master) \
&& ${CI_EVENT_TYPE} != "pull_request" \
&& ${PUSH_IMAGE} == "1" ]]
&& (((${CI_BRANCH} == stable-* || ${CI_BRANCH} == devel-* || ${CI_BRANCH} == master) \
&& ${CI_EVENT_TYPE} != "pull_request") \
|| ${PUSH_IMAGE} == "1") ]]
then
echo "The image will be pushed to the Container Registry: ${DOCKER_REPO}"
pushd ${images_dir_name}
./push-image.sh
popd
else
echo "Skip pushing the image to the ${DOCKER_REPO}."
echo "CI_REPO_SLUG: ${CI_REPO_SLUG}"
echo "GITHUB_REPO: ${GITHUB_REPO}"
echo "CI_BRANCH: ${CI_BRANCH}"
echo "CI_EVENT_TYPE: ${CI_EVENT_TYPE}"
echo "PUSH_IMAGE: ${PUSH_IMAGE}"
fi
}
Expand Down

0 comments on commit 356737f

Please sign in to comment.