Skip to content

Commit

Permalink
workflow: add debug on failure for arm64 test
Browse files Browse the repository at this point in the history
Similarly to x86_64, this adds a step "debug on failure"
in case of arm64 the arm64 job fails.

Signed-off-by: Guillaume Abrioux <[email protected]>
  • Loading branch information
guits committed Aug 7, 2023
1 parent 050d107 commit 464b261
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,10 @@ jobs:

- name: build the ceph container arm64 image
run: make BASEOS_REGISTRY=quay.io BASEOS_TAG=stream8 RELEASE="demo" BASEOS_REPO=centos/arm64v8 DAEMON_BASE_TAG="daemon-base:demo-centos-8-aarch64" DEMO_TAG="demo:demo-centos-stream8-aarch64" DAEMON_TAG="daemon:demo-centos-stream8-aarch64" IMAGES_TO_BUILD="daemon-base demo" TAG_REGISTRY=quay.io FLAVORS="main,centos-arm64,8" build

- name: debug on failure
if: ${{ failure() }}
run: |
docker images
docker ps
docker ps -a

0 comments on commit 464b261

Please sign in to comment.