diff options
| author | Chris Denton <christophersdenton@gmail.com> | 2024-03-16 18:27:33 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-16 18:27:33 +0000 |
| commit | 1fbe1390ca59213f41ab0a42e76b0333b896b0b3 (patch) | |
| tree | 4f8970e45af5da487397e2371f60f3e4f7c4db11 | |
| parent | ceef59fa2b7ca7b9a8037ae311782526ffcd1f28 (diff) | |
| parent | d5e5ef5c8958d3e59969652821d3cd0b8e185345 (diff) | |
| download | rust-1fbe1390ca59213f41ab0a42e76b0333b896b0b3.tar.gz rust-1fbe1390ca59213f41ab0a42e76b0333b896b0b3.zip | |
Rollup merge of #122401 - ChrisDenton:check-tier1, r=Mark-Simulacrum
Check library crates for all tier 1 targets in PR CI Let's try checking all tier 1 targets. Shouldn't take much time. Not sure if this is the right place to put it or not but let's see if it works first.
| -rw-r--r-- | src/ci/docker/host-x86_64/mingw-check/Dockerfile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ci/docker/host-x86_64/mingw-check/Dockerfile b/src/ci/docker/host-x86_64/mingw-check/Dockerfile index 30d3a52d82b..e5aa81d83d5 100644 --- a/src/ci/docker/host-x86_64/mingw-check/Dockerfile +++ b/src/ci/docker/host-x86_64/mingw-check/Dockerfile @@ -41,6 +41,10 @@ COPY host-x86_64/mingw-check/validate-error-codes.sh /scripts/ ENV RUN_CHECK_WITH_PARALLEL_QUERIES 1 ENV SCRIPT python3 ../x.py --stage 2 test src/tools/expand-yaml-anchors && \ + # Check library crates on all tier 1 targets. + # We disable optimized compiler built-ins because that requires a C toolchain for the target. + # We also skip the x86_64-unknown-linux-gnu target as it is well-tested by other jobs. + python3 ../x.py check --stage 0 --set build.optimized-compiler-builtins=false core alloc std --target=aarch64-unknown-linux-gnu,i686-pc-windows-msvc,i686-unknown-linux-gnu,x86_64-apple-darwin,x86_64-pc-windows-gnu,x86_64-pc-windows-msvc && \ python3 ../x.py check --target=i686-pc-windows-gnu --host=i686-pc-windows-gnu && \ python3 ../x.py clippy compiler -Aclippy::all -Dclippy::correctness && \ python3 ../x.py build --stage 0 src/tools/build-manifest && \ |
