Skip to content

Commit 55036d9

Browse files
committed
setup GitHub Actions
1 parent 0428450 commit 55036d9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/pipeline.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ jobs:
1818
- uses: actions/checkout@v2
1919
- name: Install dependencies
2020
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
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 && sudo make install && sudo ln -s /usr/local/musl/bin/musl-gcc /usr/local/bin
2424
- name: Build
2525
run: CC=musl-gcc cargo build --release --target=x86_64-unknown-linux-musl --features vendored

0 commit comments

Comments
 (0)