diff --git a/ci/buildkite.yml b/ci/buildkite.yml index a1d8c755dc..d1cacc25c0 100644 --- a/ci/buildkite.yml +++ b/ci/buildkite.yml @@ -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"