aboutsummaryrefslogtreecommitdiff
path: root/zorg
diff options
context:
space:
mode:
authorEvgeniy Stepanov <eugeni.stepanov@gmail.com>2019-09-20 22:24:07 +0000
committerEvgeniy Stepanov <eugeni.stepanov@gmail.com>2019-09-20 22:24:07 +0000
commit8cbacb276177b4b2010029fcf94a641a152d71b7 (patch)
treeee9e6704cbfabd00a976449c34ca89ae9fc31c59 /zorg
parent5e9a9583bd50531d1d27ecd4bb2c780f74e569b6 (diff)
Remove sanitizer-aarch64-linux-mte bot.
We never did anything with it, and it looks easier to add the tests on one of the existing x86_64 bots (via qemu). git-svn-id: https://llvm.org/svn/llvm-project/zorg/trunk@372433 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'zorg')
-rwxr-xr-xzorg/buildbot/builders/sanitizers/buildbot_mte.sh35
-rwxr-xr-xzorg/buildbot/builders/sanitizers/buildbot_selector.py2
2 files changed, 0 insertions, 37 deletions
diff --git a/zorg/buildbot/builders/sanitizers/buildbot_mte.sh b/zorg/buildbot/builders/sanitizers/buildbot_mte.sh
deleted file mode 100755
index 9a4aeed9..00000000
--- a/zorg/buildbot/builders/sanitizers/buildbot_mte.sh
+++ /dev/null
@@ -1,35 +0,0 @@
-#!/usr/bin/env bash
-
-set -x
-set -e
-set -u
-
-HERE="$(cd $(dirname $0) && pwd)"
-. ${HERE}/buildbot_functions.sh
-
-ROOT=`pwd`
-PLATFORM=`uname`
-export PATH="/usr/local/bin:$PATH"
-
-USE_GIT=1
-
-CHECK_LIBCXX=${CHECK_LIBCXX:-1}
-CHECK_LLD=${CHECK_LLD:-1}
-LLVM=$ROOT/llvm
-CMAKE_COMMON_OPTIONS="-GNinja -DCMAKE_BUILD_TYPE=Release -DLLVM_ENABLE_ASSERTIONS=ON -DLLVM_PARALLEL_COMPILE_JOBS=100 -DLLVM_PARALLEL_LINK_JOBS=20"
-
-clobber
-
-buildbot_update
-
-build_stage1_clang
-
-echo @@@BUILD_STEP check-llvm@@@
-(cd ${STAGE1_DIR} && ninja check-llvm) || echo @@@STEP_FAILURE@@@
-
-echo @@@BUILD_STEP check-clang@@@
-(cd ${STAGE1_DIR} && ninja check-clang) || echo @@@STEP_FAILURE@@@
-
-echo @@@BUILD_STEP check-asan@@@
-(cd ${STAGE1_DIR} && ninja check-asan) || echo @@@STEP_FAILURE@@@
-
diff --git a/zorg/buildbot/builders/sanitizers/buildbot_selector.py b/zorg/buildbot/builders/sanitizers/buildbot_selector.py
index 248efedf..27ecd8fa 100755
--- a/zorg/buildbot/builders/sanitizers/buildbot_selector.py
+++ b/zorg/buildbot/builders/sanitizers/buildbot_selector.py
@@ -25,7 +25,6 @@ BOT_ASSIGNMENT = {
'sanitizer-x86_64-linux-bootstrap-msan': bash('buildbot_bootstrap_msan.sh'),
'sanitizer-x86_64-linux-bootstrap-ubsan': bash('buildbot_bootstrap_ubsan.sh'),
'sanitizer-x86_64-linux-gn': 'true',
- 'sanitizer-aarch64-linux-mte': bash('buildbot_mte.sh'),
}
BOT_ADDITIONAL_ENV = {
@@ -40,7 +39,6 @@ BOT_ADDITIONAL_ENV = {
'sanitizer-x86_64-linux-bootstrap-msan': {},
'sanitizer-x86_64-linux-bootstrap-ubsan': {},
'sanitizer-x86_64-linux-gn': {},
- 'sanitizer-aarch64-linux-mte': {},
}
def Main():