This repository was archived by the owner on May 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -45,8 +45,6 @@ check-aux:
4545 src/tools/cargo \
4646 src/tools/cargotest \
4747 $(BOOTSTRAP_ARGS )
48- check-bootstrap :
49- $(Q )$(CFG_PYTHON ) $(CFG_SRC_DIR ) src/bootstrap/bootstrap_test.py
5048dist :
5149 $(Q )$(BOOTSTRAP ) dist $(BOOTSTRAP_ARGS )
5250distcheck :
Original file line number Diff line number Diff line change @@ -2351,6 +2351,10 @@ impl Step for Bootstrap {
23512351
23522352 /// Tests the build system itself.
23532353 fn run ( self , builder : & Builder < ' _ > ) {
2354+ let mut check_bootstrap = Command :: new ( & builder. python ( ) ) ;
2355+ check_bootstrap. arg ( "bootstrap_test.py" ) . current_dir ( builder. src . join ( "src/bootstrap/" ) ) ;
2356+ try_run ( builder, & mut check_bootstrap) ;
2357+
23542358 let mut cmd = Command :: new ( & builder. initial_cargo ) ;
23552359 cmd. arg ( "test" )
23562360 . current_dir ( builder. src . join ( "src/bootstrap" ) )
Original file line number Diff line number Diff line change @@ -141,8 +141,6 @@ $SRC/configure $RUST_CONFIGURE_ARGS
141141
142142retry make prepare
143143
144- make check-bootstrap
145-
146144# Display the CPU and memory information. This helps us know why the CI timing
147145# is fluctuating.
148146if isMacOS; then
You can’t perform that action at this time.
0 commit comments