Skip to content

Commit 073d936

Browse files
Merge clang-armv7-lnt into clang-armv7-2stage (#520)
This removes the single stage test suite bot, then adds stage 1 check and final test suite run to the 2 stage bot. Which is the equivalent but 1 fewer worker. It'll slow down the 2 stage builds a bit but there's no a lot of activity in the 32-bit Arm area anyway, so I don't think it's a problem.
1 parent 070852e commit 073d936

File tree

2 files changed

+5
-17
lines changed

2 files changed

+5
-17
lines changed

buildbot/osuosl/master/config/builders.py

Lines changed: 5 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -344,21 +344,6 @@
344344
checkout_lld=False,
345345
extra_cmake_args=["-DLLVM_TARGETS_TO_BUILD='ARM'"])},
346346

347-
# ARMv7 LNT test-suite in test-only mode
348-
{'name' : "clang-armv7-lnt",
349-
'tags' : ["clang"],
350-
'workernames' : ["linaro-clang-armv7-lnt"],
351-
'builddir': "clang-armv7-lnt",
352-
'factory' : ClangBuilder.getClangCMakeBuildFactory(
353-
clean=False,
354-
checkout_compiler_rt=False,
355-
checkout_lld=False,
356-
checks=[],
357-
runTestSuite=True,
358-
testsuite_flags=[
359-
'--cppflags', '-mcpu=cortex-a15 -marm',
360-
'--threads=32', '--build-threads=32'])},
361-
362347
## ARMv7 check-all 2-stage
363348
{'name' : "clang-armv7-2stage",
364349
'tags' : ["clang"],
@@ -369,7 +354,11 @@
369354
checkout_compiler_rt=False,
370355
checkout_lld=False,
371356
useTwoStage=True,
372-
testStage1=False,
357+
testStage1=True,
358+
runTestSuite=True,
359+
testsuite_flags=[
360+
'--cppflags', '-mcpu=cortex-a15 -marm',
361+
'--threads=32', '--build-threads=32'],
373362
extra_cmake_args=[
374363
"-DCMAKE_C_FLAGS='-mcpu=cortex-a15 -marm'",
375364
"-DCMAKE_CXX_FLAGS='-mcpu=cortex-a15 -marm'"])},

buildbot/osuosl/master/config/workers.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ def get_all():
1616
create_worker("as-worker-4", properties={'jobs' : 24}, max_builds=2),
1717

1818
# ARMv7/ARMv8 Linaro workers
19-
create_worker("linaro-clang-armv7-lnt", max_builds=1),
2019
create_worker("linaro-clang-armv7-2stage", max_builds=1),
2120
create_worker("linaro-clang-armv7-global-isel", max_builds=1),
2221
create_worker("linaro-clang-armv7-vfpv3-2stage", max_builds=1),

0 commit comments

Comments
 (0)