Skip to content

Commit ed2823c

Browse files
committed
ci: upgrade to crosstool-ng 1.27.0
1 parent 6741521 commit ed2823c

File tree

5 files changed

+7
-24
lines changed

5 files changed

+7
-24
lines changed

src/ci/docker/host-x86_64/dist-loongarch64-linux/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ FROM ubuntu:22.04
33
COPY scripts/cross-apt-packages.sh /scripts/
44
RUN sh /scripts/cross-apt-packages.sh
55

6-
COPY scripts/crosstool-ng-git.sh /scripts/
7-
RUN sh /scripts/crosstool-ng-git.sh
6+
COPY scripts/crosstool-ng.sh /scripts/
7+
RUN sh /scripts/crosstool-ng.sh
88

99
COPY scripts/rustbuild-setup.sh /scripts/
1010
RUN sh /scripts/rustbuild-setup.sh

src/ci/docker/host-x86_64/dist-loongarch64-musl/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ FROM ubuntu:22.04
33
COPY scripts/cross-apt-packages.sh /scripts/
44
RUN sh /scripts/cross-apt-packages.sh
55

6-
COPY scripts/crosstool-ng-git.sh /scripts/
7-
RUN sh /scripts/crosstool-ng-git.sh
6+
COPY scripts/crosstool-ng.sh /scripts/
7+
RUN sh /scripts/crosstool-ng.sh
88

99
COPY scripts/rustbuild-setup.sh /scripts/
1010
RUN sh /scripts/rustbuild-setup.sh

src/ci/docker/host-x86_64/dist-powerpc64le-linux/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ FROM ubuntu:22.04
33
COPY scripts/cross-apt-packages.sh /scripts/
44
RUN sh /scripts/cross-apt-packages.sh
55

6-
COPY scripts/crosstool-ng-git.sh /scripts/
7-
RUN sh /scripts/crosstool-ng-git.sh
6+
COPY scripts/crosstool-ng.sh /scripts/
7+
RUN sh /scripts/crosstool-ng.sh
88

99
COPY scripts/rustbuild-setup.sh /scripts/
1010
RUN sh /scripts/rustbuild-setup.sh

src/ci/docker/scripts/crosstool-ng-git.sh

-17
This file was deleted.

src/ci/docker/scripts/crosstool-ng.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22
set -ex
33

4-
CT_NG=1.26.0
4+
CT_NG=1.27.0
55

66
url="https://github.com/crosstool-ng/crosstool-ng/archive/crosstool-ng-$CT_NG.tar.gz"
77
curl -Lf $url | tar xzf -

0 commit comments

Comments
 (0)