We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4825e12 commit cb76f82Copy full SHA for cb76f82
src/ci/scripts/symlink-build-dir.sh
@@ -12,7 +12,7 @@ source "$(cd "$(dirname "$0")" && pwd)/../shared.sh"
12
if isWindows && isAzurePipelines; then
13
cmd //c "mkdir c:\\MORE_SPACE"
14
cmd //c "mklink /J build c:\\MORE_SPACE"
15
-elif isLinux && isGitHubActions; then
+elif isLinux && isGitHubActions && ! isSelfHostedGitHubActions; then
16
sudo mkdir -p /mnt/more-space
17
sudo chown -R "$(whoami):" /mnt/more-space
18
src/ci/shared.sh
@@ -38,6 +38,11 @@ function isGitHubActions {
38
[[ "${GITHUB_ACTIONS-false}" = "true" ]]
39
}
40
41
+
42
+function isSelfHostedGitHubActions {
43
+ [[ "${RUST_GHA_SELF_HOSTED-false}" = "true" ]]
44
+}
45
46
function isMacOS {
47
[[ "${OSTYPE}" = "darwin"* ]]
48
0 commit comments