1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
use std::fmt::{Display, Formatter};

/// [`CiType`] holds the types of CI environment that `shadow-rs` can detect.
#[derive(Debug)]
pub enum CiType {
    Github,
    Gitlab,
    // TODO: Recognize other CI types, especially Travis and Jenkins
    None,
}

impl Default for CiType {
    fn default() -> Self {
        Self::None
    }
}

impl Display for CiType {
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        match self {
            CiType::Github => write!(f, "github"),
            CiType::Gitlab => write!(f, "gitlab"),
            _ => write!(f, "none"),
        }
    }
}