From 6f589d53ba007261c5c5bac066e97afbb40f3db6 Mon Sep 17 00:00:00 2001 From: jyn Date: Sat, 15 Jul 2023 12:36:37 -0500 Subject: [PATCH] Remove unused `bootstrap::util::CiEnv` enum the right one is `build_helper::CiEnv`; this one wasn't even used. --- src/bootstrap/util.rs | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/bootstrap/util.rs b/src/bootstrap/util.rs index b291584b300..597085ad408 100644 --- a/src/bootstrap/util.rs +++ b/src/bootstrap/util.rs @@ -153,16 +153,6 @@ pub fn symlink_dir(config: &Config, original: &Path, link: &Path) -> io::Result< } } -/// The CI environment rustbuild is running in. This mainly affects how the logs -/// are printed. -#[derive(Copy, Clone, PartialEq, Eq, Debug)] -pub enum CiEnv { - /// Not a CI environment. - None, - /// The GitHub Actions environment, for Linux (including Docker), Windows and macOS builds. - GitHubActions, -} - pub fn forcing_clang_based_tests() -> bool { if let Some(var) = env::var_os("RUSTBUILD_FORCE_CLANG_BASED_TESTS") { match &var.to_string_lossy().to_lowercase()[..] {