s/label:/name:/g

This commit is contained in:
Grimes 2018-05-28 12:48:14 -07:00 committed by Grimes
parent 29061cff39
commit 0cf0ae6755
1 changed files with 7 additions and 7 deletions

View File

@ -1,6 +1,6 @@
steps:
- command: "ci/coverage.sh"
label: "coverage [public]"
name: "coverage [public]"
# TODO: Run coverage in a docker image rather than assuming kcov/cargo-kcov
# is installed on the build agent...
#plugins:
@ -10,30 +10,30 @@ steps:
# environment:
# - CODECOV_TOKEN
- command: "ci/test-stable.sh"
label: "stable [public]"
name: "stable [public]"
plugins:
docker#v1.1.1:
image: "rust"
user: "998:997" # buildkite-agent:buildkite-agent
- command: "ci/test-nightly.sh || true"
label: "nightly - FAILURES IGNORED [public]"
name: "nightly - FAILURES IGNORED [public]"
plugins:
docker#v1.1.1:
image: "rustlang/rust:nightly"
user: "998:997" # buildkite-agent:buildkite-agent
- command: "ci/test-ignored.sh"
label: "ignored [public]"
name: "ignored [public]"
plugins:
docker#v1.1.1:
image: "rust"
user: "998:997" # buildkite-agent:buildkite-agent
- command: "ci/test-cuda.sh"
label: "cuda"
name: "cuda"
- command: "ci/shellcheck.sh"
label: "shellcheck [public]"
name: "shellcheck [public]"
- wait
- command: "ci/publish.sh"
label: "publish release artifacts"
name: "publish release artifacts"
plugins:
docker#v1.1.1:
image: "rust"