We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c177ba8 commit 7907bd1Copy full SHA for 7907bd1
.github/workflows/main.yml
@@ -86,6 +86,10 @@ jobs:
86
87
steps:
88
89
+ - name: linux-musl x86_64 install dependencies
90
+ if: matrix.name == 'linux-musl' && matrix.arch == 'x86_64'
91
+ run: apk update && apk add --no-cache git gcc make sqlite musl-dev linux-headers
92
+
93
- uses: actions/[email protected]
94
with:
95
submodules: true
@@ -142,10 +146,6 @@ jobs:
142
146
if: matrix.name == 'macos'
143
147
run: brew link sqlite --force
144
148
145
- - name: linux-musl x86_64 install dependencies
- if: matrix.name == 'linux-musl' && matrix.arch == 'x86_64'
- run: apk update && apk add --no-cache gcc make sqlite musl-dev linux-headers
-
149
- name: linux-musl arm64 setup container
150
if: matrix.name == 'linux-musl' && matrix.arch == 'arm64'
151
run: |
0 commit comments