Also moves rust toolchain to a nightly equivalent of stable 1.87, in order to allow for existing rustfmt configs such as imports granularity to be used.
62 lines
2 KiB
Rust
62 lines
2 KiB
Rust
use std::env;
|
|
use std::path::PathBuf;
|
|
|
|
use anyhow::Result;
|
|
use ssh_key::{rand_core, Algorithm, EcdsaCurve, LineEnding, PrivateKey};
|
|
use vergen_gix::{BuildBuilder, CargoBuilder, Emitter, GixBuilder};
|
|
|
|
#[cfg(feature = "blog")]
|
|
const ATPROTO_LEXICON_DIR: &str = "src/atproto/lexicons";
|
|
#[cfg(feature = "blog")]
|
|
const ATPROTO_CLIENT_DIR: &str = "src/atproto";
|
|
const SSH_KEY_ALGOS: &[(&str, Algorithm)] = &[
|
|
("rsa.pem", Algorithm::Rsa { hash: None }),
|
|
("ed25519.pem", Algorithm::Ed25519),
|
|
("ecdsa.pem", Algorithm::Ecdsa { curve: EcdsaCurve::NistP256 }),
|
|
];
|
|
|
|
fn main() -> Result<()> {
|
|
println!("cargo:rerun-if-changed=build.rs");
|
|
println!("cargo:rerun-if-changed=src/atproto/lexicons");
|
|
println!("cargo:rerun-if-changed=Cargo.toml");
|
|
println!("cargo:rerun-if-changed=patches/");
|
|
|
|
patch_crate::run().expect("Failed while patching");
|
|
|
|
// Generate openSSH host keys
|
|
let out_dir = PathBuf::from(env::var("OUT_DIR").unwrap());
|
|
let mut rng = rand_core::OsRng;
|
|
for (file_name, algo) in SSH_KEY_ALGOS {
|
|
let path = out_dir.join(file_name);
|
|
if path.exists() {
|
|
println!(
|
|
"cargo:warning=Skipping existing host key: {:?}",
|
|
path.file_stem().unwrap()
|
|
);
|
|
continue;
|
|
}
|
|
|
|
let key =
|
|
PrivateKey::random(&mut rng, algo.to_owned()).map_err(anyhow::Error::from)?;
|
|
key.write_openssh_file(&path, LineEnding::default())?;
|
|
}
|
|
|
|
// Generate ATProto client with lexicon validation
|
|
#[cfg(feature = "blog")]
|
|
atrium_codegen::genapi(
|
|
ATPROTO_LEXICON_DIR,
|
|
ATPROTO_CLIENT_DIR,
|
|
&[("com.whtwnd", Some("blog"))],
|
|
)
|
|
.unwrap();
|
|
|
|
// Emit the build information
|
|
let build = BuildBuilder::all_build()?;
|
|
let gix = GixBuilder::all_git()?;
|
|
let cargo = CargoBuilder::all_cargo()?;
|
|
Emitter::default()
|
|
.add_instructions(&build)?
|
|
.add_instructions(&gix)?
|
|
.add_instructions(&cargo)?
|
|
.emit()
|
|
}
|