Skip to content

Commit 57df978

Browse files
committed
ci: show debug message to investigate
Signed-off-by: Kentaro Hayashi <[email protected]>
1 parent 0531f99 commit 57df978

File tree

4 files changed

+26
-2
lines changed

4 files changed

+26
-2
lines changed

.github/workflows/apt.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,5 +187,23 @@ jobs:
187187
with:
188188
name: packages-apt-source-${{ matrix.rake-job }}
189189
- uses: canonical/[email protected]
190+
- name: Run diagnostic
191+
run: |
192+
uname -a
193+
echo "::group::snap info lxd"
194+
snap info lxd
195+
echo "::endgroup::"
196+
echo "::group::snap services lxd"
197+
snap services lxd
198+
echo "::endgroup::"
199+
echo "::group::snap logs lxd"
200+
sudo snap logs lxd
201+
echo "::endgroup::"
202+
echo "::group::lxc remote list"
203+
lxc remote list
204+
echo "::endgroup::"
205+
echo "::group::lxc list images:"
206+
lxc image list images:
207+
echo "::endgroup::"
190208
- name: Run Test ${{ matrix.test }} on ${{ matrix.lxc-image }}
191209
run: fluent-package/apt/systemd-test/test.sh ${{ matrix.lxc-image }} ${{ matrix.test }}

.github/workflows/yum.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,12 @@ jobs:
156156
echo "::group::snap logs lxd"
157157
sudo snap logs lxd
158158
echo "::endgroup::"
159+
echo "::group::lxc remote list"
160+
lxc remote list
161+
echo "::endgroup::"
162+
echo "::group::lxc list images:"
163+
lxc image list images:
164+
echo "::endgroup::"
159165
- name: Run Test ${{ matrix.test }} on ${{ matrix.lxc-image }}
160166
run: fluent-package/yum/systemd-test/test.sh ${{ matrix.lxc-image }} ${{ matrix.test }}
161167

fluent-package/apt/systemd-test/test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ dir="/host/fluent-package/apt/systemd-test"
1515
set -eux
1616

1717
echo "::group::Run test: launch $image"
18-
lxc launch $image target
18+
lxc launch $image target --debug
1919
sleep 5
2020
echo "::endgroup::"
2121
echo "::group::Run test: configure $image"

fluent-package/yum/systemd-test/test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ dir="/host/fluent-package/yum/systemd-test"
1515
set -eux
1616

1717
echo "::group::Run test: launch $image"
18-
lxc launch $image target
18+
lxc launch $image target --debug
1919
sleep 5
2020
echo "::endgroup::"
2121
echo "::group::Run test: configure $image"

0 commit comments

Comments
 (0)