We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f10c00e commit e2e43ccCopy full SHA for e2e43cc
1 file changed
.github/workflows/build.yml
@@ -139,6 +139,21 @@ jobs:
139
run: |
140
make static
141
142
+ build-musl:
143
+ name: build with musl standard C library
144
+ runs-on: ubuntu-latest
145
+ container:
146
+ image: ghcr.io/linux-nvme/debian:latest
147
+ steps:
148
+ - uses: actions/checkout@v5
149
+ - name: Mark repo as safe for git
150
+ run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
151
+ - name: Install musl build dependencies
152
+ - run: apt-get install -y --no-install-recommends musl musl-dev musl-tools
153
+ - name: build
154
+ run: |
155
+ CC=musl-gcc scripts/build.sh musl
156
+
157
build-distro:
158
name: build libnvme and nvme-cli separately
159
runs-on: ubuntu-latest
0 commit comments