Skip to content

Commit 0951f38

Browse files
authored
Rollup merge of rust-lang#136155 - tmiasko:msvc-enable-sanitizers, r=Mark-Simulacrum
Enable sanitizers on MSVC CI jobs Previously MSVC CI would ignore all tests annotated with needs-sanitizer-support header.
2 parents fa8158a + 1ba2153 commit 0951f38

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/ci/github-actions/jobs.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -452,26 +452,26 @@ auto:
452452

453453
- name: x86_64-msvc-1
454454
env:
455-
RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc --enable-profiler
455+
RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc --enable-sanitizers --enable-profiler
456456
SCRIPT: make ci-msvc-py
457457
<<: *job-windows-25
458458

459459
- name: x86_64-msvc-2
460460
env:
461-
RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc --enable-profiler
461+
RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc --enable-sanitizers --enable-profiler
462462
SCRIPT: make ci-msvc-ps1
463463
<<: *job-windows-25
464464

465465
# i686-msvc is split into two jobs to run tests in parallel.
466466
- name: i686-msvc-1
467467
env:
468-
RUST_CONFIGURE_ARGS: --build=i686-pc-windows-msvc
468+
RUST_CONFIGURE_ARGS: --build=i686-pc-windows-msvc --enable-sanitizers
469469
SCRIPT: make ci-msvc-py
470470
<<: *job-windows
471471

472472
- name: i686-msvc-2
473473
env:
474-
RUST_CONFIGURE_ARGS: --build=i686-pc-windows-msvc
474+
RUST_CONFIGURE_ARGS: --build=i686-pc-windows-msvc --enable-sanitizers
475475
SCRIPT: make ci-msvc-ps1
476476
<<: *job-windows
477477

0 commit comments

Comments
 (0)