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

View File

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