Skip to content

Commit 0abba64

Browse files
committed
fix(workflow): streamline installation of build dependencies for linux-musl
1 parent 129172e commit 0abba64

1 file changed

Lines changed: 3 additions & 15 deletions

File tree

.github/workflows/main.yml

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -77,23 +77,11 @@ jobs:
7777
if: matrix.os == 'windows-latest'
7878
with:
7979
msystem: mingw64
80-
install: >-
81-
mingw-w64-x86_64-cc
82-
make
80+
install: mingw-w64-x86_64-cc make
8381

84-
- name: Install build dependencies
82+
- name: linux-musl install dependencies
8583
if: matrix.name == 'linux-musl'
86-
run: |
87-
apk update
88-
apk add --no-cache \
89-
git \
90-
gcc \
91-
make \
92-
curl \
93-
sqlite \
94-
openssl-dev \
95-
musl-dev \
96-
linux-headers \
84+
run: apk update && apk add --no-cache git gcc make curl sqlite openssl-dev musl-dev linux-headers
9785

9886
- name: linux-musl arm64 checkout
9987
if: matrix.name == 'linux-musl' && matrix.arch == 'arm64'

0 commit comments

Comments
 (0)