Jenkins - Build

Card Puncher Data Processing

About

A build is a result of one run of a Project.

Status

Stable

A build is stable if it was built successfully and no publisher reports it as unstable

Unstable

A build is unstable if it was built successfully and one or more publishers report it unstable.

For example if the JUnit publisher is configured and a test fails then the build will be marked unstable.

build.setResult(Result.UNSTABLE);

Successful

A build is successful when the compilation reported no errors.

Broken

See failed

Failed

A build is broken if it failed during building. That is, it is not successful.

build.setResult(Result.FAILURE);

Completed

A build is completed, if it was started and finished with any result, including failed builds.

Parameterized

Parameterized Build

Documentation / Reference





Discover More
Card Puncher Data Processing
Jenkins

is continuous deployment platform. runs jobs. When running the current directory is the workspace. A build is the execution of a job. A TriggerTriggers can run a job periodically. home directory:...
Card Puncher Data Processing
Jenkins - (Environemnt) Variable

environment variable in Jenkins Manage Jenkins > Configure System. Then Global Properties See: Manage Jenkins > System Information PATH“” (Environment) Variable In Mail Example BUILD_NUMBER...
Card Puncher Data Processing
Jenkins - (Project|Job)

Runnable tasks that are controlled / monitored by Jenkins. Job is a deprecated term, synonymous with Project. A user-configured description of work which Jenkins should perform, such as building a piece...
Card Puncher Data Processing
Jenkins - (Publisher|Post-Build Action)

A publisher is part of the build process other than compilation, for example JUnit test runs. A publisher may report or result depending on the result of its processing. If an Unit test fails,...



Share this page:
Follow us:
Task Runner