Skip to content

Commit

Permalink
Update xtask-base
Browse files Browse the repository at this point in the history
  • Loading branch information
simon-bourne committed Oct 22, 2023
1 parent b2db39a commit b13fcc6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 8 additions & 2 deletions packages/xtask/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
use xtask_base::{ci::CI, generate_open_source_files, CommonCmds};
use xtask_base::{
ci::{StandardVersions, CI},
generate_open_source_files, CommonCmds,
};

fn main() {
let code_gen = |check| generate_open_source_files(2021, check);
CommonCmds::run(CI::standard_workflow(&[]), code_gen)
CommonCmds::run(
CI::standard_workflow(StandardVersions::default(), &[]),
code_gen,
)
}

0 comments on commit b13fcc6

Please sign in to comment.