From 892ea11afcc07124d86e80f687f3016e2497654c Mon Sep 17 00:00:00 2001 From: BD103 <59022059+BD103@users.noreply.github.com> Date: Tue, 7 May 2024 21:42:50 -0400 Subject: [PATCH] feat: `cargo ci` alias --- .cargo/config_fast_builds.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.cargo/config_fast_builds.toml b/.cargo/config_fast_builds.toml index ae5581b058337..372a97d37090c 100644 --- a/.cargo/config_fast_builds.toml +++ b/.cargo/config_fast_builds.toml @@ -144,3 +144,8 @@ rustflags = [ # In most cases the gains are negligible, but if you are on macos and have slow compile times you should see significant gains. # [profile.dev] # debug = 1 + +# This is enables you to run the CI tool using `cargo ci`. +# This is not enabled by default, you need to copy this file to `config.toml`. +[alias] +ci = "run --package ci --"