File tree Expand file tree Collapse file tree 3 files changed +26
-17
lines changed
buildbot/osuosl/master/config Expand file tree Collapse file tree 3 files changed +26
-17
lines changed Original file line number Diff line number Diff line change 233
233
vs = "autodetect" ,
234
234
clean = True ,
235
235
checks = [
236
- "check-llvm" ,
237
- "check-clang" ,
238
- "check-lld" ,
239
- "check-compiler-rt-aarch64-unknown-linux-gnu"
236
+ "check-llvm" ,
237
+ "check-clang" ,
238
+ "check-lld" ,
239
+ "check-compiler-rt-aarch64-unknown-linux-gnu"
240
240
],
241
241
checks_on_target = [
242
242
("libunwind" ,
256
256
extra_configure_args = [
257
257
"-DLLVM_TARGETS_TO_BUILD=AArch64" ,
258
258
"-DTOOLCHAIN_TARGET_TRIPLE=aarch64-unknown-linux-gnu" ,
259
- "-DDEFAULT_SYSROOT=C:/buildbot/.aarch64-ubuntu" ,
260
- "-DZLIB_ROOT=C:/buildbot/.zlib-win32" ,
259
+ WithProperties ( "-DDEFAULT_SYSROOT=%(sysroot_path_aarch64)s" ) ,
260
+ WithProperties ( "-DZLIB_ROOT=%(zlib_root_path)s" ) ,
261
261
"-DLLVM_LIT_ARGS=-v -vv --threads=32" ,
262
262
WithProperties ("%(remote_test_host:+-DREMOTE_TEST_HOST=)s%(remote_test_host:-)s" ),
263
263
WithProperties ("%(remote_test_user:+-DREMOTE_TEST_USER=)s%(remote_test_user:-)s" ),
264
+ "-DCMAKE_C_COMPILER_LAUNCHER=ccache" ,
265
+ "-DCMAKE_CXX_COMPILER_LAUNCHER=ccache" ,
264
266
],
265
- cmake_cache = "../llvm-project/clang/cmake/caches/CrossWinToARMLinux.cmake" )},
267
+ cmake_cache = "../llvm-project/clang/cmake/caches/CrossWinToARMLinux.cmake" ,
268
+ env = {
269
+ 'CCACHE_DIR' : WithProperties ("%(builddir)s/ccache-db" ),
270
+ })},
266
271
267
272
# Clang builders.
268
273
Original file line number Diff line number Diff line change 147
147
vs = "autodetect" ,
148
148
clean = True ,
149
149
checks = [
150
- "check-llvm" ,
151
- "check-clang" ,
152
- "check-lld" ,
153
- "check-compiler-rt-aarch64-unknown-linux-gnu"
150
+ "check-llvm" ,
151
+ "check-clang" ,
152
+ "check-lld" ,
153
+ "check-compiler-rt-aarch64-unknown-linux-gnu"
154
154
],
155
155
checks_on_target = [
156
156
("libunwind" ,
170
170
extra_configure_args = [
171
171
"-DLLVM_TARGETS_TO_BUILD=AArch64" ,
172
172
"-DTOOLCHAIN_TARGET_TRIPLE=aarch64-unknown-linux-gnu" ,
173
- "-DDEFAULT_SYSROOT=C:/buildbot/.aarch64-ubuntu" ,
174
- "-DZLIB_ROOT=C:/buildbot/.zlib-win32" ,
173
+ WithProperties ( "-DDEFAULT_SYSROOT=%(sysroot_path_aarch64)s" ) ,
174
+ WithProperties ( "-DZLIB_ROOT=%(zlib_root_path)s" ) ,
175
175
"-DLLVM_LIT_ARGS=-v -vv --threads=32" ,
176
176
WithProperties ("%(remote_test_host:+-DREMOTE_TEST_HOST=)s%(remote_test_host:-)s" ),
177
177
WithProperties ("%(remote_test_user:+-DREMOTE_TEST_USER=)s%(remote_test_user:-)s" ),
Original file line number Diff line number Diff line change @@ -185,8 +185,10 @@ def get_all():
185
185
186
186
# Windows Server on Xeon Gold 6130 (2x2.1GHz), 128Gb of RAM
187
187
create_worker ("as-builder-2" , properties = {
188
- 'remote_test_host' : 'jetson9.lab.llvm.org' ,
189
- 'remote_test_user' : 'ubuntu'
188
+ 'remote_test_host' : 'jetson-agx-2197.lab.llvm.org' ,
189
+ 'remote_test_user' : 'ubuntu' ,
190
+ 'sysroot_path_aarch64' : 'c:/buildbot/fs/jetson-agx-ubuntu' ,
191
+ 'zlib_root_path' : 'c:/buildbot/fs/zlib-win32' ,
190
192
},
191
193
max_builds = 1 ),
192
194
@@ -204,8 +206,10 @@ def get_all():
204
206
},
205
207
max_builds = 1 ),
206
208
create_worker ("as-builder-6" , properties = { # aarch64
207
- 'remote_test_host' : 'jetson8.lab.llvm.org' ,
208
- 'remote_test_user' : 'ubuntu'
209
+ 'remote_test_host' : 'jetson-agx-2198.lab.llvm.org' ,
210
+ 'remote_test_user' : 'ubuntu' ,
211
+ 'sysroot_path_aarch64' : 'c:/buildbot/fs/jetson-agx-ubuntu' ,
212
+ 'zlib_root_path' : 'c:/buildbot/fs/zlib-win32' ,
209
213
},
210
214
max_builds = 1 ),
211
215
You can’t perform that action at this time.
0 commit comments