Skip to content

Commit

Permalink
Fix build-skip logic
Browse files Browse the repository at this point in the history
For whatever reason the `path/**/*` wildcard is not matching a change to
a `path/Containerfile`.  Since there are no subdirectories under the
container context dirs, remove the `**` part.

Signed-off-by: Chris Evich <[email protected]>
  • Loading branch information
cevich committed Jun 17, 2024
1 parent 646bc53 commit 89b0b7c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,21 +66,21 @@ test_image_build_task:
$CIRRUS_PR != '' &&
!changesInclude('.cirrus.yml',
'ci/containers_build_push.sh', 'ci/tag_version.sh',
'podman/**/*')
'podman/*')
- env:
CTX_SUB: buildah
skip: |
$CIRRUS_PR != '' &&
!changesInclude('.cirrus.yml',
'ci/containers_build_push.sh', 'ci/tag_version.sh',
'buildah/**/*')
'buildah/*')
- env:
CTX_SUB: skopeo
skip: |
$CIRRUS_PR != '' &&
!changesInclude('.cirrus.yml',
'ci/containers_build_push.sh', 'ci/tag_version.sh',
'skopeo/**/*')
'skopeo/*')
- env:
FLAVOR_NAME: testing
matrix: *pbs_images
Expand Down

0 comments on commit 89b0b7c

Please sign in to comment.