Auto merge of #74675 - pietroalbini:aarch64-ci-fallible, r=Mark-Simulacrum

Add fallible AArch64 CI builder

This adds the `aarch64-gnu` CI builder to the `auto-fallible` job, as a first step in the process of actually gating on it.

r? @Mark-Simulacrum
This commit is contained in:
bors 2020-08-02 14:08:48 +00:00
commit e8876ae2c1
4 changed files with 21 additions and 1 deletions

View file

@ -577,6 +577,11 @@ jobs:
strategy:
matrix:
include:
- name: aarch64-gnu
os:
- self-hosted
- ARM64
- linux
- name: dist-x86_64-apple
env:
SCRIPT: "./x.py dist"

View file

@ -84,6 +84,9 @@ x--expand-yaml-anchors--remove:
os: windows-latest-xl
<<: *base-job
- &job-aarch64-linux
os: [self-hosted, ARM64, linux]
- &step
if: success() && !env.SKIP_JOB
@ -586,6 +589,13 @@ jobs:
strategy:
matrix:
include:
#############################
# Linux/Docker builders #
#############################
- name: aarch64-gnu
<<: *job-aarch64-linux
####################
# macOS Builders #
####################

View file

@ -12,7 +12,7 @@ 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"
elif isLinux && isGitHubActions; then
elif isLinux && isGitHubActions && ! isSelfHostedGitHubActions; then
sudo mkdir -p /mnt/more-space
sudo chown -R "$(whoami):" /mnt/more-space

View file

@ -38,6 +38,11 @@ function isGitHubActions {
[[ "${GITHUB_ACTIONS-false}" = "true" ]]
}
function isSelfHostedGitHubActions {
[[ "${RUST_GHA_SELF_HOSTED-false}" = "true" ]]
}
function isMacOS {
[[ "${OSTYPE}" = "darwin"* ]]
}