Skip to content

Commit 8ef5da8

Browse files
committed
Update configuration for the remote LLDB builders.
* use 'cross-linux-toolchain.cmake' cache file instead of 'CrossWinToARMLinux.cmake'. * assigned the generic armv7l/aarch64 devkits to the builders. * assigned the generic target sysroots to the builders. Affected builders: * lldb-remote-linux-ubuntu * lldb-remote-linux-win Affected workers: * as-builder-9 * as-builder-10
1 parent 1497d13 commit 8ef5da8

File tree

2 files changed

+10
-12
lines changed

2 files changed

+10
-12
lines changed

buildbot/osuosl/master/config/builders.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3561,15 +3561,15 @@ def collapseRequestsDoxygen(master, builder, req1, req2):
35613561

35623562
"TOOLCHAIN_TARGET_TRIPLE" : "aarch64-unknown-linux-gnu",
35633563
"TOOLCHAIN_TARGET_COMPILER_FLAGS" : "-mcpu=cortex-a78",
3564-
"TOOLCHAIN_TARGET_SYSROOTFS" : util.Interpolate("%(prop:sysroot_path_aarch64)s"),
3564+
"TOOLCHAIN_TARGET_SYSROOTFS" : util.Interpolate("%(prop:sysroots)s/aarch64-linux-gnu"),
35653565
"LIBCXX_ABI_VERSION" : "1",
35663566
"LLVM_INSTALL_TOOLCHAIN_ONLY" : "OFF",
35673567

35683568
"LLDB_TEST_ARCH" : "aarch64",
35693569
"LLDB_TEST_COMPILER" : util.Interpolate("%(prop:builddir)s/build/bin/clang"),
35703570
"LLDB_TEST_PLATFORM_URL" : util.Interpolate("connect://%(prop:remote_test_host)s:1234"),
35713571
"LLDB_TEST_PLATFORM_WORKING_DIR": "/home/ubuntu/lldb-tests",
3572-
"LLDB_TEST_SYSROOT" : util.Interpolate("%(prop:sysroot_path_aarch64)s"),
3572+
"LLDB_TEST_SYSROOT" : util.Interpolate("%(prop:sysroots)s/aarch64-linux-gnu"),
35733573
"LLDB_ENABLE_PYTHON" : "ON",
35743574
"LLDB_ENABLE_SWIG" : "ON",
35753575
"LLDB_ENABLE_LIBEDIT" : "OFF",
@@ -3582,7 +3582,7 @@ def collapseRequestsDoxygen(master, builder, req1, req2):
35823582
"--skip-category=lldb-server"),
35833583
},
35843584
cmake_options = [
3585-
"-C", util.Interpolate("%(prop:srcdir_relative)s/clang/cmake/caches/CrossWinToARMLinux.cmake"),
3585+
"-C", util.Interpolate("%(prop:srcdir_relative)s/clang/cmake/caches/cross-linux-toolchain.cmake"),
35863586
],
35873587
install_dir = "native",
35883588
post_build_steps =
@@ -3700,14 +3700,14 @@ def collapseRequestsDoxygen(master, builder, req1, req2):
37003700

37013701
"TOOLCHAIN_TARGET_TRIPLE" : "aarch64-unknown-linux-gnu",
37023702
"TOOLCHAIN_TARGET_COMPILER_FLAGS" : "-mcpu=cortex-a78",
3703-
"TOOLCHAIN_TARGET_SYSROOTFS:PATH" : util.Interpolate("%(prop:sysroot_path_aarch64)s"),
3703+
"TOOLCHAIN_TARGET_SYSROOTFS:PATH" : util.Interpolate("%(prop:sysroots)s/aarch64-linux-gnu"),
37043704
"LIBCXX_ABI_VERSION" : "1",
37053705
"LLVM_INSTALL_TOOLCHAIN_ONLY" : "OFF",
37063706

37073707
"LLDB_TEST_ARCH" : "aarch64",
37083708
"LLDB_TEST_PLATFORM_URL" : util.Interpolate("connect://%(prop:remote_test_host)s:1234"),
37093709
"LLDB_TEST_PLATFORM_WORKING_DIR": "/home/ubuntu/lldb-tests",
3710-
"LLDB_TEST_SYSROOT:PATH" : util.Interpolate("%(prop:sysroot_path_aarch64)s"),
3710+
"LLDB_TEST_SYSROOT:PATH" : util.Interpolate("%(prop:sysroots)s/aarch64-linux-gnu"),
37113711
"LLDB_ENABLE_PYTHON" : "ON",
37123712
"LLDB_ENABLE_SWIG" : "ON",
37133713
"LLDB_ENABLE_LIBEDIT" : "OFF",
@@ -3720,7 +3720,7 @@ def collapseRequestsDoxygen(master, builder, req1, req2):
37203720
"--skip-category=lldb-server"),
37213721
},
37223722
cmake_options = [
3723-
"-C", util.Interpolate("%(prop:srcdir_relative)s/clang/cmake/caches/CrossWinToARMLinux.cmake"),
3723+
"-C", util.Interpolate("%(prop:srcdir_relative)s/clang/cmake/caches/cross-linux-toolchain.cmake"),
37243724
],
37253725
install_dir = "native",
37263726
post_build_steps =

buildbot/osuosl/master/config/workers.py

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -248,19 +248,17 @@ def get_all():
248248
# Ubuntu 24.04
249249
create_worker("as-builder-9", properties={
250250
'jobs' : 128,
251-
'remote_test_host' : 'jetson-agx-2198.lab.llvm.org',
251+
'remote_test_host' : 'arm64-linux-04.lab.llvm.org',
252252
'remote_test_user' : 'ubuntu',
253-
'sysroot_path_aarch64' : '/mnt/fs/jetson-agx-ubuntu',
254-
'tools_root_path' : '/home/buildbot/worker/as-builder-9/tools',
253+
'sysroots' : '/mnt/fs/sysroots',
255254
},
256255
max_builds=1),
257256
# Windows Server 2022
258257
create_worker("as-builder-10", properties={
259258
'jobs' : 128,
260-
'remote_test_host' : 'jetson-agx-0086.lab.llvm.org',
259+
'remote_test_host' : 'arm64-linux-03.lab.llvm.org',
261260
'remote_test_user' : 'ubuntu',
262-
'sysroot_path_aarch64' : 'c:/buildbot/fs/jetson-agx-ubuntu',
263-
'zlib_root_path' : 'c:/buildbot/fs/zlib-win32',
261+
'sysroots' : 'c:/buildbot/fs',
264262
},
265263
max_builds=1),
266264
# Ubuntu Server on x86_64

0 commit comments

Comments
 (0)