File tree 1 file changed +14
-4
lines changed 1 file changed +14
-4
lines changed Original file line number Diff line number Diff line change 23
23
sudo apt-get upgrade
24
24
sudo xargs --arg-file=${{ github.workspace }}/.github/workflows/build-dependencies.txt apt-get install -qq
25
25
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')"
29
26
30
27
- name : Autogen.sh
31
28
run : |
35
32
./configure --enable-debug --enable-debuginfo
36
33
- name : Make
37
34
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
+
39
49
- name : Install
40
50
run : |
41
51
sudo dpkg -i *.deb
You can’t perform that action at this time.
0 commit comments