ci_info 0.7.0

Provides current CI environment information.
Documentation
//! # config
//!
//! Predefined config of CI vendors.
//!

use crate::types::{EnvValue, Vendor, VendorConfig};

pub(crate) fn create() -> Vec<VendorConfig> {
    let mut config = vec![];

    config.push(VendorConfig {
        name: "AppVeyor".to_string(),
        vendor: Vendor::AppVeyor,
        ci_env: EnvValue::Exists("APPVEYOR".to_string()),
        pr_env: Some(EnvValue::Exists("APPVEYOR_PULL_REQUEST_NUMBER".to_string())),
    });

    config.push(VendorConfig {
        name: "Azure Pipelines".to_string(),
        vendor: Vendor::AzurePipelines,
        ci_env: EnvValue::Exists("SYSTEM_TEAMFOUNDATIONCOLLECTIONURI".to_string()),
        pr_env: Some(EnvValue::Exists(
            "SYSTEM_PULLREQUEST_PULLREQUESTID".to_string(),
        )),
    });

    config.push(VendorConfig {
        name: "Bamboo".to_string(),
        vendor: Vendor::Bamboo,
        ci_env: EnvValue::Exists("bamboo_planKey".to_string()),
        pr_env: None,
    });

    config.push(VendorConfig {
        name: "Bitbucket Pipelines".to_string(),
        vendor: Vendor::BitbucketPipelines,
        ci_env: EnvValue::Exists("BITBUCKET_COMMIT".to_string()),
        pr_env: Some(EnvValue::Exists("BITBUCKET_PR_ID".to_string())),
    });

    config.push(VendorConfig {
        name: "Bitrise".to_string(),
        vendor: Vendor::Bitrise,
        ci_env: EnvValue::Exists("BITRISE_IO".to_string()),
        pr_env: Some(EnvValue::Exists("BITRISE_PULL_REQUEST".to_string())),
    });

    config.push(VendorConfig {
        name: "Buddy".to_string(),
        vendor: Vendor::Buddy,
        ci_env: EnvValue::Exists("BUDDY_WORKSPACE_ID".to_string()),
        pr_env: Some(EnvValue::Exists(
            "BUDDY_EXECUTION_PULL_REQUEST_ID".to_string(),
        )),
    });

    config.push(VendorConfig {
        name: "Buildkite".to_string(),
        vendor: Vendor::Buildkite,
        ci_env: EnvValue::Exists("BUILDKITE".to_string()),
        pr_env: Some(EnvValue::NotEqual(
            "BUILDKITE_PULL_REQUEST".to_string(),
            "false".to_string(),
        )),
    });

    config.push(VendorConfig {
        name: "CircleCI".to_string(),
        vendor: Vendor::CircleCI,
        ci_env: EnvValue::Exists("CIRCLECI".to_string()),
        pr_env: Some(EnvValue::Exists("CIRCLE_PULL_REQUEST".to_string())),
    });

    config.push(VendorConfig {
        name: "Cirrus CI".to_string(),
        vendor: Vendor::CirrusCI,
        ci_env: EnvValue::Exists("CIRRUS_CI".to_string()),
        pr_env: Some(EnvValue::Exists("CIRRUS_PR".to_string())),
    });

    config.push(VendorConfig {
        name: "AWS CodeBuild".to_string(),
        vendor: Vendor::AWSCodeBuild,
        ci_env: EnvValue::Exists("CODEBUILD_BUILD_ARN".to_string()),
        pr_env: None,
    });

    config.push(VendorConfig {
        name: "Codeship".to_string(),
        vendor: Vendor::Codeship,
        ci_env: EnvValue::Value("CI_NAME".to_string(), "codeship".to_string()),
        pr_env: None,
    });

    config.push(VendorConfig {
        name: "Drone".to_string(),
        vendor: Vendor::Drone,
        ci_env: EnvValue::Exists("DRONE".to_string()),
        pr_env: Some(EnvValue::Value(
            "DRONE_BUILD_EVENT".to_string(),
            "pull_request".to_string(),
        )),
    });

    config.push(VendorConfig {
        name: "dsari".to_string(),
        vendor: Vendor::DSARI,
        ci_env: EnvValue::Exists("DSARI".to_string()),
        pr_env: None,
    });

    config.push(VendorConfig {
        name: "GitLab CI".to_string(),
        vendor: Vendor::GitLabCI,
        ci_env: EnvValue::Exists("GITLAB_CI".to_string()),
        pr_env: None,
    });

    config.push(VendorConfig {
        name: "GoCD".to_string(),
        vendor: Vendor::GoCD,
        ci_env: EnvValue::Exists("GO_PIPELINE_LABEL".to_string()),
        pr_env: None,
    });

    config.push(VendorConfig {
        name: "Hudson".to_string(),
        vendor: Vendor::Hudson,
        ci_env: EnvValue::Exists("HUDSON_URL".to_string()),
        pr_env: None,
    });

    config.push(VendorConfig {
        name: "Jenkins".to_string(),
        vendor: Vendor::Jenkins,
        ci_env: EnvValue::AllExists(vec!["JENKINS_URL".to_string(), "BUILD_ID".to_string()]),
        pr_env: Some(EnvValue::AnyExists(vec![
            "ghprbPullId".to_string(),
            "CHANGE_ID".to_string(),
        ])),
    });

    config.push(VendorConfig {
        name: "Magnum CI".to_string(),
        vendor: Vendor::MagnumCI,
        ci_env: EnvValue::Exists("MAGNUM".to_string()),
        pr_env: None,
    });

    config.push(VendorConfig {
        name: "Netlify CI".to_string(),
        vendor: Vendor::NetlifyCI,
        ci_env: EnvValue::Exists("NETLIFY_BUILD_BASE".to_string()),
        pr_env: Some(EnvValue::NotEqual(
            "PULL_REQUEST".to_string(),
            "false".to_string(),
        )),
    });

    config.push(VendorConfig {
        name: "Sail CI".to_string(),
        vendor: Vendor::SailCI,
        ci_env: EnvValue::Exists("SAILCI".to_string()),
        pr_env: Some(EnvValue::Exists("SAIL_PULL_REQUEST_NUMBER".to_string())),
    });

    config.push(VendorConfig {
        name: "Semaphore".to_string(),
        vendor: Vendor::Semaphore,
        ci_env: EnvValue::Exists("SEMAPHORE".to_string()),
        pr_env: Some(EnvValue::Exists("PULL_REQUEST_NUMBER".to_string())),
    });

    config.push(VendorConfig {
        name: "Shippable".to_string(),
        vendor: Vendor::Shippable,
        ci_env: EnvValue::Exists("SHIPPABLE".to_string()),
        pr_env: Some(EnvValue::Value(
            "IS_PULL_REQUEST".to_string(),
            "true".to_string(),
        )),
    });

    config.push(VendorConfig {
        name: "Solano CI".to_string(),
        vendor: Vendor::SolanoCI,
        ci_env: EnvValue::Exists("TDDIUM".to_string()),
        pr_env: Some(EnvValue::Exists("TDDIUM_PR_ID".to_string())),
    });

    config.push(VendorConfig {
        name: "Strider CD".to_string(),
        vendor: Vendor::StriderCD,
        ci_env: EnvValue::Exists("STRIDER".to_string()),
        pr_env: None,
    });

    config.push(VendorConfig {
        name: "TaskCluster".to_string(),
        vendor: Vendor::TaskCluster,
        ci_env: EnvValue::AllExists(vec!["TASK_ID".to_string(), "RUN_ID".to_string()]),
        pr_env: None,
    });

    config.push(VendorConfig {
        name: "TeamCity".to_string(),
        vendor: Vendor::TeamCity,
        ci_env: EnvValue::Exists("TEAMCITY_VERSION".to_string()),
        pr_env: None,
    });

    config.push(VendorConfig {
        name: "Travis CI".to_string(),
        vendor: Vendor::TravisCI,
        ci_env: EnvValue::Exists("TRAVIS".to_string()),
        pr_env: Some(EnvValue::NotEqual(
            "TRAVIS_PULL_REQUEST".to_string(),
            "false".to_string(),
        )),
    });

    config.push(VendorConfig {
        name: "Unknown".to_string(),
        vendor: Vendor::Unknown,
        ci_env: EnvValue::AnyExists(vec![
            "CI".to_string(),
            "CONTINUOUS_INTEGRATION".to_string(),
            "BUILD_NUMBER".to_string(),
            "RUN_ID".to_string(),
        ]),
        pr_env: None,
    });

    config
}