Skip to content

Commit a47a9eb

Browse files
committed
Use LLVM 16
1 parent 03a119b commit a47a9eb

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ci.yml

-1
Original file line numberDiff line numberDiff line change
@@ -540,7 +540,6 @@ jobs:
540540
try:
541541
name: "try - ${{ matrix.name }}"
542542
env:
543-
DIST_TRY_BUILD: 1
544543
CI_JOB_NAME: "${{ matrix.name }}"
545544
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse
546545
HEAD_SHA: "${{ github.event.pull_request.head.sha || github.sha }}"

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

+2-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,8 @@ ENV RUST_CONFIGURE_ARGS \
8484
--set llvm.ninja=false \
8585
--set rust.jemalloc \
8686
--set rust.use-lld=true \
87-
--set rust.lto=thin
87+
--set rust.lto=thin \
88+
--set rust.codegen-units=1
8889

8990
ENV SCRIPT python3 ../x.py build --set rust.debug=true opt-dist && \
9091
./build/$HOSTS/stage0-tools-bin/opt-dist python3 ../x.py dist \

src/ci/github-actions/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -703,7 +703,7 @@ jobs:
703703
<<: *base-ci-job
704704
name: try - ${{ matrix.name }}
705705
env:
706-
DIST_TRY_BUILD: 1
706+
# DIST_TRY_BUILD: 1
707707
<<: [*shared-ci-variables, *prod-variables]
708708
if: github.event_name == 'push' && (github.ref == 'refs/heads/try' || github.ref == 'refs/heads/try-perf') && github.repository == 'rust-lang-ci/rust'
709709
strategy:

0 commit comments

Comments
 (0)