
This includes: * project templates and jobs for charm projects to use * linter for this repo Change-Id: Id7be6711513f42aedd5aba841f9b19652540e8cf
11 lines
324 B
YAML
11 lines
324 B
YAML
- hosts: all
|
|
tasks:
|
|
- name: debug output for debugging the functional test # noqa risky-shell-pipe
|
|
shell: |
|
|
set -x
|
|
MODEL="$(juju models --format=json | jq -r '.models[]["short-name"]' | grep '^zaza-')"
|
|
juju switch $MODEL
|
|
juju status
|
|
juju debug-log --replay
|
|
exit 0
|