Skip to content
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

Update configuration for armv7l/aarch64 Win-to-Linux cross toolchain release builders. #200

Merged
Merged
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
4 changes: 2 additions & 2 deletions buildbot/osuosl/master/config/builders.py
Original file line number Diff line number Diff line change
@@ -217,7 +217,7 @@
extra_configure_args=[
"-DLLVM_TARGETS_TO_BUILD=ARM",
"-DTOOLCHAIN_TARGET_TRIPLE=armv7-unknown-linux-gnueabihf",
WithProperties("-DCLANG_CONFIG_FILE_USER_DIR=%(clang_configs_path)s"),
WithProperties("-DDTOOLCHAIN_TARGET_SYSROOTFS=%(sysroot_path_armv7)s"),
WithProperties("-DZLIB_ROOT=%(zlib_root_path)s"),
"-DLLVM_LIT_ARGS=-v -vv --threads=32",
WithProperties("%(remote_test_host:+-DREMOTE_TEST_HOST=)s%(remote_test_host:-)s"),
@@ -256,7 +256,7 @@
extra_configure_args=[
"-DLLVM_TARGETS_TO_BUILD=AArch64",
"-DTOOLCHAIN_TARGET_TRIPLE=aarch64-unknown-linux-gnu",
WithProperties("-DCLANG_CONFIG_FILE_USER_DIR=%(clang_configs_path)s"),
WithProperties("-DDTOOLCHAIN_TARGET_SYSROOTFS=%(sysroot_path_aarch64)s"),
WithProperties("-DZLIB_ROOT=%(zlib_root_path)s"),
"-DLLVM_LIT_ARGS=-v -vv --threads=32",
WithProperties("%(remote_test_host:+-DREMOTE_TEST_HOST=)s%(remote_test_host:-)s"),
4 changes: 2 additions & 2 deletions buildbot/osuosl/master/config/release_builders.py
Original file line number Diff line number Diff line change
@@ -131,7 +131,7 @@
extra_configure_args=[
"-DLLVM_TARGETS_TO_BUILD=ARM",
"-DTOOLCHAIN_TARGET_TRIPLE=armv7-unknown-linux-gnueabihf",
WithProperties("-DCLANG_CONFIG_FILE_USER_DIR=%(clang_configs_path)s"),
WithProperties("-DTOOLCHAIN_TARGET_SYSROOTFS=%(sysroot_path_armv7)s"),
WithProperties("-DZLIB_ROOT=%(zlib_root_path)s"),
"-DLLVM_LIT_ARGS=-v -vv --threads=32",
WithProperties("%(remote_test_host:+-DREMOTE_TEST_HOST=)s%(remote_test_host:-)s"),
@@ -170,7 +170,7 @@
extra_configure_args=[
"-DLLVM_TARGETS_TO_BUILD=AArch64",
"-DTOOLCHAIN_TARGET_TRIPLE=aarch64-unknown-linux-gnu",
WithProperties("-DCLANG_CONFIG_FILE_USER_DIR=%(clang_configs_path)s"),
WithProperties("-DDTOOLCHAIN_TARGET_SYSROOTFS=%(sysroot_path_aarch64)s"),
WithProperties("-DZLIB_ROOT=%(zlib_root_path)s"),
"-DLLVM_LIT_ARGS=-v -vv --threads=32",
WithProperties("%(remote_test_host:+-DREMOTE_TEST_HOST=)s%(remote_test_host:-)s"),
14 changes: 10 additions & 4 deletions buildbot/osuosl/master/config/workers.py
Original file line number Diff line number Diff line change
@@ -180,7 +180,8 @@ def get_all():
create_worker("as-builder-1", properties={
'remote_test_host' : 'jetson6.lab.llvm.org',
'remote_test_user' : 'ubuntu',
'clang_configs_path' : 'c:/buildbot/clang-configs',
'sysroot_path_aarch64' : 'c:/buildbot/fs/jetson-agx-ubuntu',
'sysroot_path_armv7' : 'c:/buildbot/fs/jetson-tk1-arm-ubuntu',
'zlib_root_path' : 'c:/buildbot/fs/zlib-win32',
},
max_builds=1),
@@ -189,7 +190,8 @@ def get_all():
create_worker("as-builder-2", properties={
'remote_test_host' : 'jetson-agx-2197.lab.llvm.org',
'remote_test_user' : 'ubuntu',
'clang_configs_path' : 'c:/buildbot/clang-configs',
'sysroot_path_aarch64' : 'c:/buildbot/fs/jetson-agx-ubuntu',
'sysroot_path_armv7' : 'c:/buildbot/fs/jetson-tk1-arm-ubuntu',
'zlib_root_path' : 'c:/buildbot/fs/zlib-win32',
},
max_builds=1),
@@ -203,14 +205,18 @@ def get_all():

# Windows Server on Xeon Gold 6230 (2x2.1GHz), 256Gb of RAM
create_worker("as-builder-5", properties={ # arm
'remote_test_host': 'jetson4.lab.llvm.org',
'remote_test_user': 'ubuntu'
'remote_test_host' : 'jetson4.lab.llvm.org',
'remote_test_user' : 'ubuntu',
'sysroot_path_aarch64' : 'c:/buildbot/fs/jetson-agx-ubuntu',
'sysroot_path_armv7' : 'c:/buildbot/fs/jetson-tk1-arm-ubuntu',
'zlib_root_path' : 'c:/buildbot/fs/zlib-win32',
},
max_builds=1),
create_worker("as-builder-6", properties={ # aarch64
'remote_test_host' : 'jetson-agx-2198.lab.llvm.org',
'remote_test_user' : 'ubuntu',
'sysroot_path_aarch64' : 'c:/buildbot/fs/jetson-agx-ubuntu',
'sysroot_path_armv7' : 'c:/buildbot/fs/jetson-tk1-arm-ubuntu',
'zlib_root_path' : 'c:/buildbot/fs/zlib-win32',
},
max_builds=1),