Skip to content

Commit

Permalink
Auto merge of #6264 - robertohuertasm:patch-1, r=alexcrichton
Browse files Browse the repository at this point in the history
Add support for Azure DevOps

Related to rust-lang/crates.io#1551 which is still pending to be merged.
  • Loading branch information
bors committed Feb 14, 2019
2 parents d6ff4d4 + 2269e51 commit c38b626
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/doc/src/reference/manifest.md
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ license-file = "..."
# Optional specification of badges to be displayed on crates.io.
#
# - The badges pertaining to build status that are currently available are
# Appveyor, CircleCI, GitLab, and TravisCI.
# Appveyor, CircleCI, GitLab, Azure DevOps and TravisCI.
# - Available badges pertaining to code test coverage are Codecov and
# Coveralls.
# - There are also maintenance-related badges based on isitmaintained.com
Expand All @@ -275,6 +275,10 @@ circle-ci = { repository = "...", branch = "master" }
# GitLab: `repository` is required. `branch` is optional; default is `master`
gitlab = { repository = "...", branch = "master" }

# Azure DevOps: `project` is required. `pipeline` is required. `build` is optional; default is `1`
# Note: project = `organization/project`, pipeline = `name_of_pipeline`, build = `definitionId`
azure-devops = { project = "...", pipeline = "...", build="2" }

# Travis CI: `repository` in format "<user>/<project>" is required.
# `branch` is optional; default is `master`
travis-ci = { repository = "...", branch = "master" }
Expand Down

0 comments on commit c38b626

Please sign in to comment.