diff --git a/buildbot/osuosl/master/config/builders.py b/buildbot/osuosl/master/config/builders.py --- a/buildbot/osuosl/master/config/builders.py +++ b/buildbot/osuosl/master/config/builders.py @@ -1543,6 +1543,28 @@ "-DCMAKE_CXX_STANDARD=17", ])}, + {'name' : "flang-aarch64-latest-gcc", + 'tags' : ['flang', 'aarch64', 'release'], + 'workernames' : ["linaro-aarch64-flang-latest-gcc"], + 'builddir': "flang-aarch64-latest-gcc", + 'factory' : UnifiedTreeBuilder.getCmakeWithNinjaBuildFactory( + clean=True, + checks=['check-flang'], + depends_on_projects=['llvm','mlir','clang','flang'], + extra_configure_args=[ + "-DLLVM_TARGETS_TO_BUILD=AArch64", + "-DCMAKE_C_COMPILER=/usr/bin/gcc", + "-DCMAKE_CXX_COMPILER=/usr/bin/g++", + "-DLLVM_INSTALL_UTILS=ON", + "-DCMAKE_CXX_STANDARD=17", + "-DLLVM_ENABLE_WERROR=OFF", + "-DFLANG_ENABLE_WERROR=ON", + "-DBUILD_SHARED_LIBS=ON", + "-DLLVM_ENABLE_ASSERTIONS=ON", + "-DFLANG_BUILD_NEW_DRIVER=ON", + "-DCMAKE_BUILD_TYPE=Release", + ])}, + {'name' : "flang-x86_64-linux", 'tags' : ["flang"], 'workernames' : ["nersc-flang"], diff --git a/buildbot/osuosl/master/config/workers.py b/buildbot/osuosl/master/config/workers.py --- a/buildbot/osuosl/master/config/workers.py +++ b/buildbot/osuosl/master/config/workers.py @@ -51,6 +51,7 @@ create_worker("linaro-aarch64-flang-rel-assert", properties={'jobs' : 32}, max_builds=1), create_worker("linaro-aarch64-flang-dylib", properties={'jobs' : 32}, max_builds=1), create_worker("linaro-aarch64-flang-sharedlibs", properties={'jobs' : 32}, max_builds=1), + create_worker("linaro-aarch64-flang-latest-gcc", properties={'jobs' : 32}, max_builds=1), # Libcxx testsuite has tests with timing assumptions. Run single-threaded to make # sure we have plenty CPU cycle to satisfy timing assumptions. create_worker("linaro-aarch64-libcxx", properties={'jobs' : 1}, max_builds=1),