Skip to content

Commit

Permalink
remove stage 2 ci check
Browse files Browse the repository at this point in the history
  • Loading branch information
ncitron committed Apr 17, 2024
1 parent 676a0d5 commit b4349b7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
1 change: 0 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
build-toolchain:
unset GITHUB_ACTIONS
CARGO_TARGET_RISCV32I_JOLT_ZKVM_ELF_RUSTFLAGS="-Cpasses=loweratomic" ./x build
CARGO_TARGET_RISCV32I_JOLT_ZKVM_ELF_RUSTFLAGS="-Cpasses=loweratomic" ./x build --stage 2

Expand Down
10 changes: 5 additions & 5 deletions src/bootstrap/src/core/config/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2050,11 +2050,11 @@ impl Config {
| Subcommand::Bench { .. }
| Subcommand::Dist { .. }
| Subcommand::Install { .. } => {
assert_eq!(
config.stage, 2,
"x.py should be run with `--stage 2` on CI, but was run with `--stage {}`",
config.stage,
);
// assert_eq!(
// config.stage, 2,
// "x.py should be run with `--stage 2` on CI, but was run with `--stage {}`",
// config.stage,
// );
}
Subcommand::Clean { .. }
| Subcommand::Check { .. }
Expand Down

0 comments on commit b4349b7

Please sign in to comment.