We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e7a22d commit 4a98ce7Copy full SHA for 4a98ce7
1 file changed
.github/workflows/build.yml
@@ -90,16 +90,18 @@ jobs:
90
test-linux-musl-arm:
91
needs: [build]
92
runs-on: ubuntu-22.04-arm
93
- container:
94
- image: alpine:latest
95
steps:
96
- uses: actions/checkout@v5
97
- - name: Install dependencies
98
- run: apk add --no-cache bash
99
- name: Download all workflow run artifacts
100
uses: actions/download-artifact@v4
101
- - name: test musl arm64 package
102
- run: ./script/unpack-and-test.sh
103
- env:
104
- BINARY_ARCH: arm64
105
- BINARY_OS: linux-musl
+ - name: Test in alpine container
+ run: |
+ docker run --rm \
+ -v "${{ github.workspace }}:/workspace" \
+ -e BINARY_ARCH=arm64 \
+ -e BINARY_OS=linux-musl \
+ alpine:latest /bin/sh -c "
+ apk add --no-cache bash && \
+ cd /workspace && \
106
+ ./script/unpack-and-test.sh
107
+ "
0 commit comments