8427: Move CI to rust-cache Action r=matklad a=Swatinem

This is humbling. I actually took inspiration from RAs pre-cache xtask when developing my action ;-)

Closes #7731

Co-authored-by: Arpad Borsos <swatinem@swatinem.de>
This commit is contained in:
bors[bot] 2021-05-03 13:37:12 +00:00 committed by GitHub
commit 242fa3c15b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 117 deletions

View file

@ -18,7 +18,6 @@ mod install;
mod release;
mod dist;
mod metrics;
mod pre_cache;
use anyhow::{bail, Result};
use std::{
@ -39,7 +38,6 @@ fn main() -> Result<()> {
}
flags::XtaskCmd::Install(cmd) => cmd.run(),
flags::XtaskCmd::FuzzTests(_) => run_fuzzer(),
flags::XtaskCmd::PreCache(cmd) => cmd.run(),
flags::XtaskCmd::Release(cmd) => cmd.run(),
flags::XtaskCmd::Promote(cmd) => cmd.run(),
flags::XtaskCmd::Dist(cmd) => cmd.run(),