about summary refs log tree commit diff
path: root/src/ci/scripts
diff options
context:
space:
mode:
authorPietro Albini <pietro@pietroalbini.org>2022-06-05 12:29:20 +0200
committerPietro Albini <pietro@pietroalbini.org>2022-06-05 12:29:20 +0200
commit94f2f009396ef0458c9b97859300d4d2a514ad97 (patch)
treecc6cb5613ab569d7a2302c61d34d9f04e1398d9a /src/ci/scripts
parenta2da4af33c5e6a22fff0a223f99d53cba4a5aa52 (diff)
downloadrust-94f2f009396ef0458c9b97859300d4d2a514ad97.tar.gz
rust-94f2f009396ef0458c9b97859300d4d2a514ad97.zip
remove azure pipelines configuration
Diffstat (limited to 'src/ci/scripts')
-rwxr-xr-xsrc/ci/scripts/setup-environment.sh15
-rwxr-xr-xsrc/ci/scripts/symlink-build-dir.sh15
2 files changed, 0 insertions, 30 deletions
diff --git a/src/ci/scripts/setup-environment.sh b/src/ci/scripts/setup-environment.sh
index 411ef6f9b28..0bc35f93283 100755
--- a/src/ci/scripts/setup-environment.sh
+++ b/src/ci/scripts/setup-environment.sh
@@ -8,21 +8,6 @@ IFS=$'\n\t'
 
 source "$(cd "$(dirname "$0")" && pwd)/../shared.sh"
 
-# Since matrix variables are readonly in Azure Pipelines, we take
-# INITIAL_RUST_CONFIGURE_ARGS and establish RUST_CONFIGURE_ARGS
-# which downstream steps can alter
-if isAzurePipelines; then
-    # macOS ships with Bash 3.16, so we cannot use [[ -v FOO ]],
-    # which was introduced in Bash 4.2
-    if [[ -z "${INITIAL_RUST_CONFIGURE_ARGS+x}" ]]; then
-        INITIAL_RUST_CONFIG=""
-        echo "No initial Rust configure args set"
-    else
-        INITIAL_RUST_CONFIG="${INITIAL_RUST_CONFIGURE_ARGS}"
-        ciCommandSetEnv RUST_CONFIGURE_ARGS "${INITIAL_RUST_CONFIG}"
-    fi
-fi
-
 # Load extra environment variables
 vars="${EXTRA_VARIABLES-}"
 echo "${vars}" | jq '' >/dev/null  # Validate JSON and exit on errors
diff --git a/src/ci/scripts/symlink-build-dir.sh b/src/ci/scripts/symlink-build-dir.sh
deleted file mode 100755
index 23849f7047c..00000000000
--- a/src/ci/scripts/symlink-build-dir.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/bash
-# We've had multiple issues with the default disk running out of disk space
-# during builds, and it looks like other disks mounted in the VMs have more
-# space available. This script synlinks the build directory to those other
-# disks, in the CI providers and OSes affected by this.
-
-set -euo pipefail
-IFS=$'\n\t'
-
-source "$(cd "$(dirname "$0")" && pwd)/../shared.sh"
-
-if isWindows && isAzurePipelines; then
-    cmd //c "mkdir c:\\MORE_SPACE"
-    cmd //c "mklink /J build c:\\MORE_SPACE"
-fi