#deployment #cd #env #provider #info

cd_env

Detect CD (deploy, deliver, distribute) information from the environment

5 releases

0.2.0 Apr 11, 2024
0.1.3 Mar 26, 2024
0.1.2 Sep 22, 2023
0.1.1 Mar 16, 2023
0.1.0 Mar 16, 2023

#918 in Development tools

Download history 18/week @ 2024-01-01 62/week @ 2024-01-08 33/week @ 2024-01-15 130/week @ 2024-01-22 169/week @ 2024-01-29 233/week @ 2024-02-05 171/week @ 2024-02-12 110/week @ 2024-02-19 212/week @ 2024-02-26 229/week @ 2024-03-04 118/week @ 2024-03-11 292/week @ 2024-03-18 265/week @ 2024-03-25 254/week @ 2024-04-01 381/week @ 2024-04-08 320/week @ 2024-04-15

1,226 downloads per month

MIT license

13KB
253 lines

cd_env

Crates.io Crates.io

Detects CD (continuous deploy, deliver, distribute) information from the current environment. Most commonly, this only works as part of the deploy build step, and not the deploy run step.

Usage

To start, detect if in a CD or general deploy environment.

cd_env::is_cd();

Or detect which CD provider is being used.

cd_env::detect_provider(); // Render

And most importantly, extract information about the deploy environment and CD provider.

use cd_env::get_environment;

if let Some(cd) = get_environment() {
	println!("Provider: {:?}", cd.provider);
	println!("Branch: {}", ci.branch);
	println!("Commit: {}", ci.revision);
}

VCS information isn't always available depending on the provider.

Dependencies

~0.4–1MB
~24K SLoC