|
| 1 | +use std::{ |
| 2 | + env, fs, |
| 3 | + path::{Path, PathBuf}, |
| 4 | + process::Command, |
| 5 | +}; |
| 6 | + |
| 7 | +type DynError = Box<dyn std::error::Error>; |
| 8 | + |
| 9 | +fn main() { |
| 10 | + if let Err(e) = try_main() { |
| 11 | + eprintln!("{}", e); |
| 12 | + std::process::exit(-1); |
| 13 | + } |
| 14 | +} |
| 15 | + |
| 16 | +fn try_main() -> Result<(), DynError> { |
| 17 | + let task = env::args().nth(1); |
| 18 | + match task.as_deref() { |
| 19 | + Some("release") => release()?, |
| 20 | + _ => print_help(), |
| 21 | + } |
| 22 | + Ok(()) |
| 23 | +} |
| 24 | + |
| 25 | +fn print_help() { |
| 26 | + eprintln!( |
| 27 | + "Tasks: |
| 28 | +
|
| 29 | +release runs 'cargo release' after preparing the source directory |
| 30 | +" |
| 31 | + ) |
| 32 | +} |
| 33 | + |
| 34 | +fn visit_dirs(dir: &Path, cb: &dyn Fn(&fs::DirEntry)) -> std::io::Result<()> { |
| 35 | + if dir.is_dir() { |
| 36 | + for entry in fs::read_dir(dir)? { |
| 37 | + let entry = entry?; |
| 38 | + let path = entry.path(); |
| 39 | + if path.is_dir() { |
| 40 | + visit_dirs(&path, cb)?; |
| 41 | + } else { |
| 42 | + cb(&entry); |
| 43 | + } |
| 44 | + } |
| 45 | + } |
| 46 | + Ok(()) |
| 47 | +} |
| 48 | + |
| 49 | +fn release() -> Result<(), DynError> { |
| 50 | + let cargo = env::var("CARGO").unwrap_or_else(|_| "cargo".to_string()); |
| 51 | + |
| 52 | + let status = Command::new(&cargo) |
| 53 | + .current_dir(project_root()) |
| 54 | + .args(["release", "--workspace", "minor", "-x", "--no-publish"]) |
| 55 | + .status()?; |
| 56 | + |
| 57 | + if !status.success() { |
| 58 | + Err("cargo release failed")?; |
| 59 | + } |
| 60 | + |
| 61 | + // For packaged build: rename libcubeb Cargo.toml files to Cargo.toml.in. |
| 62 | + visit_dirs(Path::new("cubeb-sys/libcubeb"), &|entry| { |
| 63 | + let path = entry.path(); |
| 64 | + if path |
| 65 | + .file_name() |
| 66 | + .unwrap() |
| 67 | + .to_str() |
| 68 | + .unwrap() |
| 69 | + .ends_with("Cargo.toml") |
| 70 | + { |
| 71 | + let new_path = path.with_file_name("Cargo.toml.in"); |
| 72 | + fs::rename(&path, &new_path).unwrap(); |
| 73 | + } |
| 74 | + }) |
| 75 | + .unwrap(); |
| 76 | + |
| 77 | + let status = Command::new(&cargo) |
| 78 | + .current_dir(project_root()) |
| 79 | + .args(["publish", "--package", "cubeb-sys", "--allow-dirty"]) |
| 80 | + .status()?; |
| 81 | + if !status.success() { |
| 82 | + Err("cargo publish failed")?; |
| 83 | + } |
| 84 | + |
| 85 | + // Rename libcubeb Cargo.toml.in files back to Cargo.toml. |
| 86 | + visit_dirs(Path::new("cubeb-sys/libcubeb"), &|entry| { |
| 87 | + let path = entry.path(); |
| 88 | + if path |
| 89 | + .file_name() |
| 90 | + .unwrap() |
| 91 | + .to_str() |
| 92 | + .unwrap() |
| 93 | + .ends_with("Cargo.toml.in") |
| 94 | + { |
| 95 | + let new_path = path.with_file_name("Cargo.toml"); |
| 96 | + fs::rename(&path, &new_path).unwrap(); |
| 97 | + } |
| 98 | + }) |
| 99 | + .unwrap(); |
| 100 | + |
| 101 | + let status = Command::new(&cargo) |
| 102 | + .current_dir(project_root()) |
| 103 | + .args(["publish", "--package", "cubeb-core"]) |
| 104 | + .status()?; |
| 105 | + if !status.success() { |
| 106 | + Err("cargo publish failed")?; |
| 107 | + } |
| 108 | + |
| 109 | + let status = Command::new(&cargo) |
| 110 | + .current_dir(project_root()) |
| 111 | + .args(["publish", "--package", "cubeb-backend"]) |
| 112 | + .status()?; |
| 113 | + if !status.success() { |
| 114 | + Err("cargo publish failed")?; |
| 115 | + } |
| 116 | + |
| 117 | + let status = Command::new(&cargo) |
| 118 | + .current_dir(project_root()) |
| 119 | + .args(["publish", "--package", "cubeb"]) |
| 120 | + .status()?; |
| 121 | + if !status.success() { |
| 122 | + Err("cargo publish failed")?; |
| 123 | + } |
| 124 | + |
| 125 | + Ok(()) |
| 126 | +} |
| 127 | + |
| 128 | +fn project_root() -> PathBuf { |
| 129 | + Path::new(&env!("CARGO_MANIFEST_DIR")) |
| 130 | + .ancestors() |
| 131 | + .nth(1) |
| 132 | + .unwrap() |
| 133 | + .to_path_buf() |
| 134 | +} |
0 commit comments