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 bb81148 commit 23b808aCopy full SHA for 23b808a
.github/workflows/main.yml
@@ -11,6 +11,7 @@ permissions:
11
jobs:
12
build:
13
runs-on: ${{ matrix.os }}
14
+ container: ${{ matrix.container && matrix.container || '' }}
15
name: ${{ matrix.name }}${{ matrix.arch && format('-{0}', matrix.arch) || '' }} build${{ matrix.arch != 'arm64-v8a' && matrix.name != 'ios-sim' && matrix.name != 'ios' && matrix.name != 'wasm' && matrix.name != 'apple-xcframework' && ' + test' || ''}}
16
timeout-minutes: 20
17
strategy:
@@ -49,6 +50,9 @@ jobs:
49
50
- os: macos-latest
51
name: apple-xcframework
52
make: xcframework
53
+ - os: ubuntu-latest
54
+ name: musl
55
+ container: alpine:latest
56
57
defaults:
58
run:
0 commit comments