Skip to content

Commit 94ffff6

Browse files
committed
Fix workflow
1 parent 08b6bd2 commit 94ffff6

2 files changed

Lines changed: 8 additions & 1 deletion

File tree

.github/workflows/mainline-test.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,13 @@ jobs:
3434

3535
- name: Extract and run tarballs
3636
run: |
37+
if [ "${{ matrix.image }}" == "debian:stable" ]; then
38+
apt update && apt install unzip -y
39+
elif [ "${{ matrix.image }}" == "fedora:latest" ]; then
40+
dnf update -y && dnf install unzip -y
41+
else
42+
pacman -Sy --noconfirm && pacman -S unzip --noconfirm
43+
fi
3744
for archive in artifacts/*.tar.gz; do
3845
mkdir unpacked
3946
unzip -q "$archive" -d unpacked

foreign/HPool

0 commit comments

Comments
 (0)