cli: Skip IDL checks if `--no-idl` option is passed (#3093)

This commit is contained in:
acheron 2024-07-19 22:12:58 +02:00 committed by GitHub
parent 117717468f
commit bdee6fb544
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 2 deletions

View File

@ -28,6 +28,7 @@ The minor version will be incremented upon a breaking change and the patch versi
- lang: Make `InitSpace` support unnamed & unit structs ([#3084](https://github.com/coral-xyz/anchor/pull/3084)).
- lang: Fix using `owner` constraint with `Box`ed accounts ([#3087](https://github.com/coral-xyz/anchor/pull/3087)).
- lang: Add a sanity check for unimplemented token extensions ([#3090](https://github.com/coral-xyz/anchor/pull/3090)).
- cli: Skip IDL checks if `--no-idl` option is passed ([#3093](https://github.com/coral-xyz/anchor/pull/3093)).
### Breaking

View File

@ -1819,8 +1819,6 @@ fn _build_rust_cwd(
arch: &ProgramArch,
cargo_args: Vec<String>,
) -> Result<()> {
check_idl_build_feature().ok();
let exit = std::process::Command::new("cargo")
.arg(arch.build_subcommand())
.args(cargo_args.clone())
@ -2683,6 +2681,7 @@ fn idl_build(
.path
}
};
check_idl_build_feature().ok();
let idl = anchor_lang_idl::build::build_idl_with_cargo_args(
program_path,
cfg.features.resolution,
@ -2735,6 +2734,8 @@ in `{path}`."#
));
}
check_idl_build_feature().ok();
anchor_lang_idl::build::build_idl_with_cargo_args(
std::env::current_dir()?,
cfg.features.resolution,