File tree 3 files changed +12
-12
lines changed
docker/host-x86_64/x86_64-fuchsia
3 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -72,4 +72,4 @@ ENV RUST_CONFIGURE_ARGS \
72
72
--set target.x86_64-unknown-fuchsia.linker=/usr/local/bin/ld.lld
73
73
ENV SCRIPT \
74
74
python3 ../x.py install --target $TARGETS compiler/rustc library/std clippy && \
75
- bash ../src/ci/docker/host-x86_64/x86_64-gnu-integration /build-fuchsia.sh
75
+ bash ../src/ci/docker/host-x86_64/x86_64-fuchsia /build-fuchsia.sh
Original file line number Diff line number Diff line change 5
5
#
6
6
# You may run this script locally using Docker with the following command:
7
7
#
8
- # $ src/ci/docker/run.sh x86_64-gnu-integration
8
+ # $ src/ci/docker/run.sh x86_64-fuchsia
9
9
#
10
10
# Alternatively, from within the container with --dev, assuming you have made it
11
11
# as far as building the toolchain with the above command:
12
12
#
13
- # $ src/ci/docker/run.sh --dev x86_64-gnu-integration
13
+ # $ src/ci/docker/run.sh --dev x86_64-fuchsia
14
14
# docker# git config --global --add safe.directory /checkout/obj/fuchsia
15
- # docker# ../src/ci/docker/host-x86_64/x86_64-gnu-integration /build-fuchsia.sh
15
+ # docker# ../src/ci/docker/host-x86_64/x86_64-fuchsia /build-fuchsia.sh
16
16
#
17
17
# Also see the docs in the rustc-dev-guide for more info:
18
18
# https://github.com/rust-lang/rustc-dev-guide/pull/1989
@@ -21,7 +21,7 @@ set -euf -o pipefail
21
21
22
22
# Set this variable to 1 to disable updating the Fuchsia checkout. This is
23
23
# useful for making local changes. You can find the Fuchsia checkout in
24
- # `obj/x86_64-gnu-integration /fuchsia` in your local checkout after running this
24
+ # `obj/x86_64-fuchsia /fuchsia` in your local checkout after running this
25
25
# job for the first time.
26
26
KEEP_CHECKOUT=
27
27
Original file line number Diff line number Diff line change @@ -208,6 +208,13 @@ auto:
208
208
- image : test-various
209
209
<< : *job-linux-4c
210
210
211
+ - image : x86_64-fuchsia
212
+ # Only run this job on the nightly channel. Fuchsia requires
213
+ # nightly features to compile, and this job would fail if
214
+ # executed on beta and stable.
215
+ only_on_channel : nightly
216
+ << : *job-linux-8c
217
+
211
218
- image : x86_64-gnu
212
219
<< : *job-linux-4c
213
220
@@ -229,13 +236,6 @@ auto:
229
236
- image : x86_64-gnu-aux
230
237
<< : *job-linux-4c
231
238
232
- - image : x86_64-gnu-integration
233
- # Only run this job on the nightly channel. Fuchsia requires
234
- # nightly features to compile, and this job would fail if
235
- # executed on beta and stable.
236
- only_on_channel : nightly
237
- << : *job-linux-8c
238
-
239
239
- image : x86_64-gnu-debug
240
240
<< : *job-linux-4c
241
241
You can’t perform that action at this time.
0 commit comments