We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78930aa commit 02d7796Copy full SHA for 02d7796
1 file changed
.github/workflows/mainline-test.yml
@@ -36,16 +36,18 @@ jobs:
36
shell: bash
37
run: |
38
if [[ "${{ matrix.image }}" == "debian:stable" ]]; then
39
- apt update && apt install unzip -y
+ apt update && apt install unzip file -y
40
elif [[ "${{ matrix.image }}" == "fedora:latest" ]]; then
41
dnf update -y && dnf install unzip -y
42
else
43
pacman -Sy --noconfirm && pacman -S unzip --noconfirm
44
fi
45
ls -la artifacts
46
+ file artifacts/*.tar.gz
47
for archive in artifacts/*.tar.gz; do
- tar -xpf "$archive" -C / --overwrite
48
+ tar -xpf "$subarchive" -C / --overwrite
49
for f in /opt/hcpu/tests/*; do
50
[ -f "$f" ] && [ -x "$f" ] && "$f"
51
done
52
+ rm -rf unpacked
53
0 commit comments