Skip to content

Commit 9678dac

Browse files
committed
Auto merge of rust-lang#123828 - cuviper:cargo-aarch64-gnu, r=Mark-Simulacrum
ci: test cargo on `aarch64-gnu` Since `aarch64-unknown-linux-gnu` is a tier-1 target, we should also test cargo on it, especially since cargo's own CI doesn't cover this yet. This might have helped us discover rust-lang#123733 sooner, which is not a cargo problem but was uncovered by a new cargo test (which we'll have to skip for now). Everything else passes in my local run, so at least we'll have a guard against future regressions.
2 parents 7ab5eb8 + 814c196 commit 9678dac

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

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

+3-1
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,6 @@ ENV RUST_CONFIGURE_ARGS \
2626
--enable-sanitizers \
2727
--enable-profiler \
2828
--enable-compiler-docs
29-
ENV SCRIPT python3 ../x.py --stage 2 test
29+
# FIXME: Skipping cargo panic_abort_doc_tests due to https://github.com/rust-lang/rust/issues/123733
30+
ENV SCRIPT python3 ../x.py --stage 2 test && \
31+
python3 ../x.py --stage 2 test src/tools/cargo --test-args "--skip panic_abort_doc_tests"

0 commit comments

Comments
 (0)