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 967d91c commit 276d91aCopy full SHA for 276d91a
.github/workflows/rust.yml
@@ -20,9 +20,10 @@ jobs:
20
- uses: actions/setup-go@v5
21
with:
22
go-version: "^1.18"
23
- # Install `patch`, needed to build `krane-bundle`
24
- - run: sudo apt-get install -y patch
25
- - run: make build
+ # Install `patch`, needed to build `krane-bundle`, and tools for linking against musl
+ - run: sudo apt-get install -y patch musl-tools musl-dev
+ - run: rustup target add x86_64-unknown-linux-musl
26
+ - run: CARGO_BUILD_TARGET=x86_64-unknown-linux-musl make build
27
28
cross-build:
29
runs-on:
0 commit comments