Skip to content

Merge clang-armv7-lnt into clang-armv7-2stage #520

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 5 additions & 16 deletions buildbot/osuosl/master/config/builders.py
Original file line number Diff line number Diff line change
Expand Up @@ -344,21 +344,6 @@
checkout_lld=False,
extra_cmake_args=["-DLLVM_TARGETS_TO_BUILD='ARM'"])},

# ARMv7 LNT test-suite in test-only mode
{'name' : "clang-armv7-lnt",
'tags' : ["clang"],
'workernames' : ["linaro-clang-armv7-lnt"],
'builddir': "clang-armv7-lnt",
'factory' : ClangBuilder.getClangCMakeBuildFactory(
clean=False,
checkout_compiler_rt=False,
checkout_lld=False,
checks=[],
runTestSuite=True,
testsuite_flags=[
'--cppflags', '-mcpu=cortex-a15 -marm',
'--threads=32', '--build-threads=32'])},

## ARMv7 check-all 2-stage
{'name' : "clang-armv7-2stage",
'tags' : ["clang"],
Expand All @@ -369,7 +354,11 @@
checkout_compiler_rt=False,
checkout_lld=False,
useTwoStage=True,
testStage1=False,
testStage1=True,
runTestSuite=True,
testsuite_flags=[
'--cppflags', '-mcpu=cortex-a15 -marm',
'--threads=32', '--build-threads=32'],
extra_cmake_args=[
"-DCMAKE_C_FLAGS='-mcpu=cortex-a15 -marm'",
"-DCMAKE_CXX_FLAGS='-mcpu=cortex-a15 -marm'"])},
Expand Down
1 change: 0 additions & 1 deletion buildbot/osuosl/master/config/workers.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ def get_all():
create_worker("as-worker-4", properties={'jobs' : 24}, max_builds=2),

# ARMv7/ARMv8 Linaro workers
create_worker("linaro-clang-armv7-lnt", max_builds=1),
create_worker("linaro-clang-armv7-2stage", max_builds=1),
create_worker("linaro-clang-armv7-global-isel", max_builds=1),
create_worker("linaro-clang-armv7-vfpv3-2stage", max_builds=1),
Expand Down