Skip to content

Commit aa41265

Browse files
committed
Update musl ci jobs to 1.1.19
1 parent ebe0feb commit aa41265

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

ci/docker/aarch64-unknown-linux-musl/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ FROM ubuntu:17.10
33
RUN apt-get update && apt-get install -y --no-install-recommends \
44
gcc make libc6-dev git curl ca-certificates \
55
gcc-aarch64-linux-gnu qemu-user
6-
RUN curl https://www.musl-libc.org/releases/musl-1.1.16.tar.gz | \
6+
RUN curl https://www.musl-libc.org/releases/musl-1.1.19.tar.gz | \
77
tar xzf - && \
8-
cd musl-1.1.16 && \
8+
cd musl-1.1.19 && \
99
CC=aarch64-linux-gnu-gcc \
1010
./configure --prefix=/musl-aarch64 --enable-wrapper=yes && \
1111
make install -j4 && \
1212
cd .. && \
13-
rm -rf musl-1.1.16 && \
13+
rm -rf musl-1.1.19 && \
1414
# Install linux kernel headers sanitized for use with musl
1515
curl -L https://github.com/sabotage-linux/kernel-headers/archive/v3.12.6-5.tar.gz | \
1616
tar xzf - && \

ci/docker/arm-unknown-linux-musleabihf/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
44
gcc make libc6-dev git curl ca-certificates \
55
gcc-arm-linux-gnueabihf qemu-user
66

7-
RUN curl https://www.musl-libc.org/releases/musl-1.1.16.tar.gz | tar xzf -
8-
WORKDIR /musl-1.1.16
7+
RUN curl https://www.musl-libc.org/releases/musl-1.1.19.tar.gz | tar xzf -
8+
WORKDIR /musl-1.1.19
99
RUN CC=arm-linux-gnueabihf-gcc \
1010
CFLAGS="-march=armv6 -marm" \
1111
./configure --prefix=/musl-arm --enable-wrapper=yes

ci/docker/i686-unknown-linux-musl/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ RUN apt-get install -y --no-install-recommends \
1212
# since otherwise the script will fail to find a compiler.
1313
# * We manually unset CROSS_COMPILE when running make; otherwise the makefile
1414
# will call the non-existent binary 'i686-ar'.
15-
RUN curl https://www.musl-libc.org/releases/musl-1.1.15.tar.gz | \
15+
RUN curl https://www.musl-libc.org/releases/musl-1.1.19.tar.gz | \
1616
tar xzf - && \
17-
cd musl-1.1.15 && \
17+
cd musl-1.1.19 && \
1818
CC=gcc CFLAGS=-m32 ./configure --prefix=/musl-i686 --disable-shared --target=i686 && \
1919
make CROSS_COMPILE= install -j4 && \
2020
cd .. && \
21-
rm -rf musl-1.1.15 && \
21+
rm -rf musl-1.1.19 && \
2222
# Install linux kernel headers sanitized for use with musl
2323
curl -L https://github.com/sabotage-linux/kernel-headers/archive/v3.12.6-5.tar.gz | \
2424
tar xzf - && \

ci/docker/x86_64-unknown-linux-musl/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ FROM ubuntu:17.10
33
RUN apt-get update
44
RUN apt-get install -y --no-install-recommends \
55
gcc make libc6-dev git curl ca-certificates
6-
RUN curl https://www.musl-libc.org/releases/musl-1.1.15.tar.gz | \
6+
RUN curl https://www.musl-libc.org/releases/musl-1.1.19.tar.gz | \
77
tar xzf - && \
8-
cd musl-1.1.15 && \
8+
cd musl-1.1.19 && \
99
./configure --prefix=/musl-x86_64 && \
1010
make install -j4 && \
1111
cd .. && \
12-
rm -rf musl-1.1.15 && \
12+
rm -rf musl-1.1.19 && \
1313
# Install linux kernel headers sanitized for use with musl
1414
curl -L https://github.com/sabotage-linux/kernel-headers/archive/v3.12.6-5.tar.gz | \
1515
tar xzf - && \

0 commit comments

Comments
 (0)