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 2d5e111 commit 78930aaCopy full SHA for 78930aa
1 file changed
.github/workflows/mainline-test.yml
@@ -43,14 +43,9 @@ jobs:
43
pacman -Sy --noconfirm && pacman -S unzip --noconfirm
44
fi
45
ls -la artifacts
46
- for archive in artifacts/*.zip; do
47
- mkdir -p unpacked
48
- unzip -q "$archive" -d unpacked
49
- for subarchive in unpacked/*; do
50
- tar -xpf "$subarchive" -C / --overwrite
51
- done
+ for archive in artifacts/*.tar.gz; do
+ tar -xpf "$archive" -C / --overwrite
52
for f in /opt/hcpu/tests/*; do
53
[ -f "$f" ] && [ -x "$f" ] && "$f"
54
done
55
- rm -rf unpacked
56
0 commit comments