From aec6e76caaf39f4e170978c422f3f09cbcf4eb87 Mon Sep 17 00:00:00 2001 From: Felipe Reyes Date: Tue, 20 Feb 2024 10:48:30 -0300 Subject: [PATCH] Run `juju-crashdump` instead of `juju crashdump` The juju snap can't run programs that are outside the snap due to the confinement restrictions --- .github/workflows/tox.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tox.yaml b/.github/workflows/tox.yaml index c8cccf00..023c2f3b 100644 --- a/.github/workflows/tox.yaml +++ b/.github/workflows/tox.yaml @@ -101,7 +101,7 @@ jobs: juju models model=$(juju models --format yaml|grep "^- name:.*zaza"|cut -f2 -d/) juju status -m $model | tee logs/juju-status.txt - juju crashdump -m $model -o logs/ + juju-crashdump -m $model -o logs/ - name: upload logs on failure if: failure() uses: actions/upload-artifact@v2