Skip to content

Commit

Permalink
ci: skip container run for conmon v2.1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
k9withabone committed Dec 21, 2023
1 parent 78d3144 commit 225e14d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,17 @@ jobs:
- run: podman version

- id: conmon_version
run: echo version="$(conmon --version | head -n 1)" >> $GITHUB_OUTPUT

- name: Build ARM image
run: podman build --platform linux/arm64/v8 -t podlet .

- name: Build x86 image
run: podman build --platform linux/amd64 -t podlet .

- name: Test run image
# There is a regression in conmon v2.1.9 which causes this step to fail.
# See https://github.com/containers/conmon/issues/475
if: ${{ ! contains(steps.conmon_version.outputs.version, '2.1.9') }}
run: podman run localhost/podlet -h

0 comments on commit 225e14d

Please sign in to comment.