We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0428450 commit 55036d9Copy full SHA for 55036d9
.github/workflows/pipeline.yml
@@ -18,8 +18,8 @@ jobs:
18
- uses: actions/checkout@v2
19
- name: Install dependencies
20
run: rustup target add x86_64-unknown-linux-musl
21
- && curl -o /musl-1.2.2.tar.gz https://musl.libc.org/releases/musl-1.2.2.tar.gz
22
- && tar zxf /musl-1.2.2.tar.gz && cd musl-1.2.2/
23
- && ./configure && make install && ln -s /usr/local/musl/bin/musl-gcc /usr/local/bin
+ && curl -o ./musl-1.2.2.tar.gz https://musl.libc.org/releases/musl-1.2.2.tar.gz
+ && tar zxf ./musl-1.2.2.tar.gz && cd musl-1.2.2/
+ && ./configure && sudo make install && sudo ln -s /usr/local/musl/bin/musl-gcc /usr/local/bin
24
- name: Build
25
run: CC=musl-gcc cargo build --release --target=x86_64-unknown-linux-musl --features vendored
0 commit comments