File tree 3 files changed +16
-0
lines changed
ci/docker/x86_64-unknown-linux-musl
3 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -76,6 +76,10 @@ matrix:
76
76
env : TARGET=s390x-unknown-linux-gnu
77
77
DOCKER=s390x-unknown-linux-gnu
78
78
SKIP_TESTS=1
79
+ - os : linux
80
+ env : TARGET=x86_64-unknown-linux-musl
81
+ DOCKER=x86_64-unknown-linux-musl
82
+ SKIP_TESTS=1
79
83
80
84
# Android use a local docker image
81
85
- os : linux
Original file line number Diff line number Diff line change @@ -610,6 +610,7 @@ platform of your choice:
610
610
- [ x86_64-pc-windows-msvc] ( https://static.rust-lang.org/rustup/dist/x86_64-pc-windows-msvc/rustup-init.exe ) <sup >[ †] ( #vs2015 ) </sup >
611
611
- [ x86_64-unknown-freebsd] ( https://static.rust-lang.org/rustup/dist/x86_64-unknown-freebsd/rustup-init )
612
612
- [ x86_64-unknown-linux-gnu] ( https://static.rust-lang.org/rustup/dist/x86_64-unknown-linux-gnu/rustup-init )
613
+ - [ x86_64-unknown-linux-musl] ( https://static.rust-lang.org/rustup/dist/x86_64-unknown-linux-musl/rustup-init )
613
614
- [ x86_64-unknown-netbsd] ( https://static.rust-lang.org/rustup/dist/x86_64-unknown-netbsd/rustup-init )
614
615
615
616
<a name =" vs2015 " >†</a >
Original file line number Diff line number Diff line change
1
+ FROM alpine:3.8
2
+
3
+ RUN apk update && \
4
+ apk add \
5
+ curl \
6
+ ca-certificates \
7
+ perl \
8
+ make \
9
+ gcc
10
+
11
+ ENV CC_x86_64_unknown_linux_musl=gcc
You can’t perform that action at this time.
0 commit comments