mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-05-04 19:20:03 +00:00
Migrate CI and builds to Just, add "full" builds (#660)
This commit is contained in:
parent
305bf8123d
commit
aea9df602c
30 changed files with 717 additions and 463 deletions
|
@ -1,6 +1,7 @@
|
|||
use std::time::Instant;
|
||||
|
||||
use binstalk::helpers::jobserver_client::LazyJobserverClient;
|
||||
use log::LevelFilter;
|
||||
use tracing::debug;
|
||||
|
||||
use cargo_binstall::{
|
||||
|
@ -24,7 +25,10 @@ fn main() -> MainExit {
|
|||
println!("{}", env!("CARGO_PKG_VERSION"));
|
||||
MainExit::Success(None)
|
||||
} else {
|
||||
logging(args.log_level, args.json_output);
|
||||
logging(
|
||||
args.log_level.unwrap_or(LevelFilter::Info),
|
||||
args.json_output,
|
||||
);
|
||||
|
||||
let start = Instant::now();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue