> For the complete documentation index, see [llms.txt](https://docs.appsurify.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.appsurify.com/getting-started/start-prioritized-testing/build-value-for-ci-pipeline.md).

# Build Value for CI Pipeline

Execution of CI Pipeline depends on the parameters that we pass while writing the command.

One of the important parameter is the build number, build ID. Most of the CI Pipelines auto populates these values through built-in environmental variables

Here, we have collected some of the most common used CI Pipelines and the corresponding link to get detail

| CI Pipeline    | Build Name               | Reference                                                                                                            |
| -------------- | ------------------------ | -------------------------------------------------------------------------------------------------------------------- |
| Azure DevOps   | `Build.BuildId`          | [Link](https://docs.microsoft.com/en-us/azure/devops/pipelines/build/variables?view=azure-devops\&tabs=yaml)         |
| Bitbucket      | `BITBUCKET_BUILD_NUMBER` | [Link](https://support.atlassian.com/bitbucket-cloud/docs/variables-and-secrets/)                                    |
| CircleCI       | `CIRCLE_BUILD_NUM`       | [Link](https://circleci.com/docs/2.0/env-vars/#built-in-environment-variables)                                       |
| GitHub Actions | `GITHUB_RUN_ID`          | [Link](https://docs.github.com/en/actions/learn-github-actions/environment-variables#default-environment-variables)  |
| GitLab CI      | `CI_JOB_ID`              | [Link](https://docs.gitlab.com/ee/ci/variables/predefined_variables.html)                                            |
| GoCD           | `GO_PIPELINE_LABEL`      | [Link](https://docs.gocd.org/current/faq/dev_use_current_revision_in_build.html#standard-gocd-environment-variables) |
| Jenkins        | `BUILD_TAG`              | [Link](https://www.jenkins.io/doc/book/pipeline/jenkinsfile/#using-environment-variables)                            |
| Travis CI      | `TRAVIS_BUILD_NUMBER`    | [Link](https://docs.travis-ci.com/user/environment-variables/#default-environment-variables)                         |
|                |                          |                                                                                                                      |
