Skip to content

Commit 6080118

Browse files
committed
Debug stuff - don't check-in
1 parent 5269d8a commit 6080118

File tree

1 file changed

+14
-4
lines changed

1 file changed

+14
-4
lines changed

.github/workflows/zfs-tests-functional.yml

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,6 @@ jobs:
2323
sudo apt-get upgrade
2424
sudo xargs --arg-file=${{ github.workspace }}/.github/workflows/build-dependencies.txt apt-get install -qq
2525
sudo apt-get clean
26-
echo "RPM2CPIO: $(which rpm2cpio)"
27-
echo "CPIO: $(which cpio)"
28-
echo "PKG: $(sudo apt list --installed | grep -E 'rpm|cpio')"
2926
3027
- name: Autogen.sh
3128
run: |
@@ -35,7 +32,20 @@ jobs:
3532
./configure --enable-debug --enable-debuginfo
3633
- name: Make
3734
run: |
38-
make --no-print-directory -s pkg-utils pkg-kmod
35+
make --no-print-directory -s pkg-utils pkg-kmod || true
36+
echo "looking in runner dir"
37+
ls /tmp/zfs-build-runner-*
38+
echo "/tmp is:"
39+
ls -l /tmp
40+
R="$(ls /tmp/zfs-build-runner-*/RPMS/x86_64/zfs-2.1.16-1.x86_64.rpm)"
41+
mkdir /tmp/junk
42+
echo "RPMs: $R"
43+
sudo rpm2cpio $R 2>/tmp/err1 | (cd /tmp/junk; sudo cpio --extract --make-directories --no-absolute-filenames --preserve-modification-time 2>/tmp/err2)
44+
echo "err1"
45+
cat /tmp/err1 || true
46+
echo "err2"
47+
cat /tmp/err2 || true
48+
3949
- name: Install
4050
run: |
4151
sudo dpkg -i *.deb

0 commit comments

Comments
 (0)