From 9d5c416037b2066b0b1450952914989dee73900a Mon Sep 17 00:00:00 2001 From: Pietro Albini Date: Fri, 20 Mar 2020 16:49:39 +0100 Subject: [PATCH] ci: rename script windows-symlink-build-dir to symlink-build-dir There will be a need to symlink the Linux build directory in the future as well, so let's make the script name generic. --- src/ci/azure-pipelines/steps/run.yml | 4 ++-- .../{windows-symlink-build-dir.sh => symlink-build-dir.sh} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename src/ci/scripts/{windows-symlink-build-dir.sh => symlink-build-dir.sh} (100%) diff --git a/src/ci/azure-pipelines/steps/run.yml b/src/ci/azure-pipelines/steps/run.yml index ee9425aa1c51..e2f4b62deafc 100644 --- a/src/ci/azure-pipelines/steps/run.yml +++ b/src/ci/azure-pipelines/steps/run.yml @@ -59,8 +59,8 @@ steps: displayName: Install InnoSetup condition: and(succeeded(), not(variables.SKIP_JOB)) -- bash: src/ci/scripts/windows-symlink-build-dir.sh - displayName: Ensure the build happens on C:\ instead of D:\ +- bash: src/ci/scripts/symlink-build-dir.sh + displayName: Ensure the build happens on a partition with enough space condition: and(succeeded(), not(variables.SKIP_JOB)) - bash: src/ci/scripts/disable-git-crlf-conversion.sh diff --git a/src/ci/scripts/windows-symlink-build-dir.sh b/src/ci/scripts/symlink-build-dir.sh similarity index 100% rename from src/ci/scripts/windows-symlink-build-dir.sh rename to src/ci/scripts/symlink-build-dir.sh