-
Notifications
You must be signed in to change notification settings - Fork 242
/
build.rs
50 lines (44 loc) · 1.65 KB
/
build.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
use std::env;
use std::path::Path;
use std::process::Command;
use std::str::from_utf8;
fn generate_self_schema() {
println!("cargo:rerun-if-changed=python/pydantic_core/core_schema.py");
println!("cargo:rerun-if-changed=generate_self_schema.py");
if Path::new("./src/self_schema.py").exists() && option_env!("CI") == Some("true") {
// self_schema.py already exists and CI indicates we're running on a github actions build,
// don't bother generating again
return;
}
let output = Command::new(
env::var("PYTHON")
.ok()
.or_else(|| pyo3_build_config::get().executable.clone())
.unwrap_or_else(|| "python3".to_owned()),
)
.arg("generate_self_schema.py")
.output()
.expect("failed to execute process");
if !output.status.success() {
let stdout = from_utf8(&output.stdout).unwrap();
let stderr = from_utf8(&output.stderr).unwrap();
eprint!("{stdout}{stderr}");
panic!("generate_self_schema.py failed with {}", output.status);
}
}
fn main() {
pyo3_build_config::use_pyo3_cfgs();
if let Some(true) = version_check::supports_feature("coverage_attribute") {
println!("cargo:rustc-cfg=has_coverage_attribute");
}
println!("cargo:rustc-check-cfg=cfg(has_coverage_attribute)");
if std::env::var("RUSTFLAGS")
.unwrap_or_default()
.contains("-Cprofile-use=")
{
println!("cargo:rustc-cfg=specified_profile_use");
}
println!("cargo:rustc-check-cfg=cfg(specified_profile_use)");
generate_self_schema();
println!("cargo:rustc-env=PROFILE={}", std::env::var("PROFILE").unwrap());
}