Skip to content

Commit d4a144f

Browse files
Test
1 parent 8404b93 commit d4a144f

3 files changed

Lines changed: 8 additions & 1 deletion

File tree

src/bootstrap/mk/Makefile.in

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,4 +128,8 @@ ci-mingw-bootstrap:
128128
$(Q)$(BOOTSTRAP) test --stage 2 $(TEST_SET2)
129129
ci-mingw: ci-mingw-x ci-mingw-bootstrap
130130

131+
ci-test:
132+
$(Q)$(BOOTSTRAP) build --stage 1 --target i686-pc-windows-msvc
133+
$(Q)$(CFG_SRC_DIR)/build/host/stage1/bin/rustc --edition=2024 --target i686-pc-windows-msvc test.rs
134+
131135
.PHONY: dist

src/ci/github-actions/jobs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -720,7 +720,7 @@ auto:
720720
--target=i686-pc-windows-msvc
721721
--enable-full-tools
722722
--enable-profiler
723-
SCRIPT: python x.py dist bootstrap --include-default-paths
723+
SCRIPT: make ci-test
724724
DIST_REQUIRE_ALL_TOOLS: 1
725725
CODEGEN_BACKENDS: llvm,cranelift
726726
<<: *job-windows

test.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#![deny(missing_debug_implementations)]
2+
pub struct Foo;
3+
fn main() {}

0 commit comments

Comments
 (0)