Skip to content

Commit c959d3a

Browse files
committed
ci: update jobs to also run tests/run-make-cargo
For the ones that explicitly picks which test suite to run.
1 parent 9504090 commit c959d3a

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

src/ci/docker/host-aarch64/aarch64-gnu-debug/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,4 @@ ENV RUST_CONFIGURE_ARGS \
5454

5555
ENV SCRIPT \
5656
python3 ../x.py --stage 2 build && \
57-
python3 ../x.py --stage 2 test tests/run-make
57+
python3 ../x.py --stage 2 test tests/run-make tests/run-make-cargo

src/ci/docker/host-x86_64/dist-various-1/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ ENV RUST_CONFIGURE_ARGS \
158158
--disable-docs
159159

160160
ENV SCRIPT \
161-
python3 ../x.py --stage 2 test --host='' --target $RUN_MAKE_TARGETS tests/run-make && \
161+
python3 ../x.py --stage 2 test --host='' --target $RUN_MAKE_TARGETS tests/run-make tests/run-make-cargo && \
162162
python3 ../x.py dist --host='' --target $TARGETS
163163

164164
# sccache

src/ci/docker/host-x86_64/test-various/Dockerfile

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,10 @@ RUN curl -L https://github.com/bytecodealliance/wasmtime/releases/download/v19.0
6060
tar -xJ
6161
ENV PATH "$PATH:/wasmtime-v19.0.0-x86_64-linux"
6262

63-
ENV WASM_WASIP_TARGET=wasm32-wasip1
63+
ENV WASM_WASIP_TARGET=wasm32-wasip1
6464
ENV WASM_WASIP_SCRIPT python3 /checkout/x.py --stage 2 test --host='' --target $WASM_WASIP_TARGET \
6565
tests/run-make \
66+
tests/run-make-cargo \
6667
tests/ui \
6768
tests/mir-opt \
6869
tests/codegen-units \
@@ -73,6 +74,7 @@ ENV WASM_WASIP_SCRIPT python3 /checkout/x.py --stage 2 test --host='' --target $
7374
ENV NVPTX_TARGETS=nvptx64-nvidia-cuda
7475
ENV NVPTX_SCRIPT python3 /checkout/x.py --stage 2 test --host='' --target $NVPTX_TARGETS \
7576
tests/run-make \
77+
tests/run-make-cargo \
7678
tests/assembly-llvm
7779

7880
ENV MUSL_TARGETS=x86_64-unknown-linux-musl \
@@ -88,8 +90,8 @@ ENV UEFI_TARGETS=aarch64-unknown-uefi,i686-unknown-uefi,x86_64-unknown-uefi \
8890
CC_x86_64_unknown_uefi=clang-11 \
8991
CXX_x86_64_unknown_uefi=clang++-11
9092
ENV UEFI_SCRIPT python3 /checkout/x.py --stage 2 build --host='' --target $UEFI_TARGETS && \
91-
python3 /checkout/x.py --stage 2 test tests/run-make/uefi-qemu/rmake.rs --target aarch64-unknown-uefi && \
92-
python3 /checkout/x.py --stage 2 test tests/run-make/uefi-qemu/rmake.rs --target i686-unknown-uefi && \
93-
python3 /checkout/x.py --stage 2 test tests/run-make/uefi-qemu/rmake.rs --target x86_64-unknown-uefi
93+
python3 /checkout/x.py --stage 2 test tests/run-make-cargo/uefi-qemu/rmake.rs --target aarch64-unknown-uefi && \
94+
python3 /checkout/x.py --stage 2 test tests/run-make-cargo/uefi-qemu/rmake.rs --target i686-unknown-uefi && \
95+
python3 /checkout/x.py --stage 2 test tests/run-make-cargo/uefi-qemu/rmake.rs --target x86_64-unknown-uefi
9496

9597
ENV SCRIPT $WASM_WASIP_SCRIPT && $NVPTX_SCRIPT && $MUSL_SCRIPT && $UEFI_SCRIPT

src/ci/docker/host-x86_64/x86_64-gnu-debug/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,4 @@ ENV RUST_CONFIGURE_ARGS \
5656
ENV SCRIPT \
5757
python3 ../x.py --stage 2 build && \
5858
python3 ../x.py --stage 2 test tests/ui && \
59-
python3 ../x.py --stage 2 test tests/run-make
59+
python3 ../x.py --stage 2 test tests/run-make tests/run-make-cargo

0 commit comments

Comments
 (0)