about summary refs log tree commit diff
path: root/src/ci/scripts
diff options
context:
space:
mode:
authorPietro Albini <pietro@pietroalbini.org>2019-10-31 16:56:11 +0100
committerPietro Albini <pietro@pietroalbini.org>2019-11-12 11:06:11 +0100
commitc90cc12b0721cc6e80ba62041bf0b82058428580 (patch)
treea2428da52b839fb71741a26485308e7d59689f00 /src/ci/scripts
parente209ee42e99cd76d7fefd0c53fbd84f0d2123935 (diff)
downloadrust-c90cc12b0721cc6e80ba62041bf0b82058428580.tar.gz
rust-c90cc12b0721cc6e80ba62041bf0b82058428580.zip
ci: move validate-toolstate.sh in the mingw-check image
The task was already run just there, so this cleans things up.
Diffstat (limited to 'src/ci/scripts')
-rwxr-xr-xsrc/ci/scripts/validate-toolstate.sh18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/ci/scripts/validate-toolstate.sh b/src/ci/scripts/validate-toolstate.sh
deleted file mode 100755
index 93e645b24a8..00000000000
--- a/src/ci/scripts/validate-toolstate.sh
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/bash
-# A quick smoke test to make sure publish_tooolstate.py works.
-
-set -euo pipefail
-IFS=$'\n\t'
-
-source "$(cd "$(dirname "$0")" && pwd)/../shared.sh"
-
-git clone --depth=1 https://github.com/rust-lang-nursery/rust-toolstate.git
-cd rust-toolstate
-python2.7 "${BUILD_SOURCESDIRECTORY}/src/tools/publish_toolstate.py" "$(git rev-parse HEAD)" "$(git log --format=%s -n1 HEAD)" "" ""
-# Only check maintainers if this build is supposed to publish toolstate.
-# Builds that are not supposed to publish don't have the access token.
-if [ -n "${TOOLSTATE_PUBLISH+is_set}" ]; then
-  TOOLSTATE_VALIDATE_MAINTAINERS_REPO=rust-lang/rust python2.7 "${BUILD_SOURCESDIRECTORY}/src/tools/publish_toolstate.py"
-fi
-cd ..
-rm -rf rust-toolstate