From 0cf0ae6755cbe308844c01daaf9533062a0f4383 Mon Sep 17 00:00:00 2001 From: Grimes Date: Mon, 28 May 2018 12:48:14 -0700 Subject: [PATCH] s/label:/name:/g --- ci/buildkite.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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"