Skip to content

Commit f4bdeec

Browse files
committed
tmp: make try builds use the x64 apple builder
1 parent d25900f commit f4bdeec

File tree

2 files changed

+24
-6
lines changed

2 files changed

+24
-6
lines changed

.github/workflows/ci.yml

+12-3
Original file line numberDiff line numberDiff line change
@@ -530,9 +530,18 @@ jobs:
530530
strategy:
531531
matrix:
532532
include:
533-
- name: dist-x86_64-linux
534-
os: ubuntu-20.04-16core-64gb
535-
env: {}
533+
- name: dist-x86_64-apple
534+
env:
535+
SCRIPT: "./x.py dist bootstrap --include-default-paths --host=x86_64-apple-darwin --target=x86_64-apple-darwin"
536+
RUST_CONFIGURE_ARGS: "--enable-full-tools --enable-sanitizers --enable-profiler --set rust.jemalloc --set llvm.ninja=false --set rust.lto=thin --set rust.codegen-units=1"
537+
RUSTC_RETRY_LINKER_ON_SEGFAULT: 1
538+
MACOSX_DEPLOYMENT_TARGET: 10.7
539+
SELECT_XCODE: /Applications/Xcode_13.4.1.app
540+
NO_LLVM_ASSERTIONS: 1
541+
NO_DEBUG_ASSERTIONS: 1
542+
NO_OVERFLOW_CHECKS: 1
543+
DIST_REQUIRE_ALL_TOOLS: 1
544+
os: macos-13
536545
timeout-minutes: 600
537546
runs-on: "${{ matrix.os }}"
538547
steps:

src/ci/github-actions/ci.yml

+12-3
Original file line numberDiff line numberDiff line change
@@ -695,9 +695,18 @@ jobs:
695695
strategy:
696696
matrix:
697697
include:
698-
- &dist-x86_64-linux
699-
name: dist-x86_64-linux
700-
<<: *job-linux-16c
698+
- name: dist-x86_64-apple
699+
env:
700+
SCRIPT: ./x.py dist bootstrap --include-default-paths --host=x86_64-apple-darwin --target=x86_64-apple-darwin
701+
RUST_CONFIGURE_ARGS: --enable-full-tools --enable-sanitizers --enable-profiler --set rust.jemalloc --set llvm.ninja=false --set rust.lto=thin --set rust.codegen-units=1
702+
RUSTC_RETRY_LINKER_ON_SEGFAULT: 1
703+
MACOSX_DEPLOYMENT_TARGET: 10.7
704+
SELECT_XCODE: /Applications/Xcode_13.4.1.app
705+
NO_LLVM_ASSERTIONS: 1
706+
NO_DEBUG_ASSERTIONS: 1
707+
NO_OVERFLOW_CHECKS: 1
708+
DIST_REQUIRE_ALL_TOOLS: 1
709+
<<: *job-macos-xl
701710

702711
master:
703712
name: master

0 commit comments

Comments
 (0)