[PATCH] D103199: Add flang-x86_64-windows builder.
Michael Kruse via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Jun 10 11:27:22 PDT 2021
Meinersbur updated this revision to Diff 351227.
Meinersbur marked an inline comment as done.
Meinersbur added a comment.
- Remove allow_test_fail
Windows flang tests are now green after D104011 <https://reviews.llvm.org/D104011> and D89368 <https://reviews.llvm.org/D89368>. allow_test_fail not required anymore.
See http://meinersbur.de:8011/#/builders/146/builds/593
Repository:
rZORG LLVM Github Zorg
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D103199/new/
https://reviews.llvm.org/D103199
Files:
buildbot/osuosl/master/config/builders.py
buildbot/osuosl/master/config/workers.py
Index: buildbot/osuosl/master/config/workers.py
===================================================================
--- buildbot/osuosl/master/config/workers.py
+++ buildbot/osuosl/master/config/workers.py
@@ -227,6 +227,9 @@
# Ubuntu 18.04.LTS x86_64, Intel(R) Xeon(R) CPU X3460 @ 2.80GHz, 32 GiB RAM
create_worker("polly-x86_64-fdcserver", properties={'jobs': 8, 'loadaverage': 8}, max_builds=1),
+ # Windows 10, AMD Ryzen 5 PRO 4650G, 16 GiB RAM
+ create_worker("minipc-ryzen-win", properties={'jobs': 12}, max_builds=1),
+
# Ubuntu 20.04.LTS x86_64, Intel(R) Core(TM) i5-9400F CPU @ 2.90Ghz, 16 GiB RAM, NVIDIA GeForce GTX 1050 Ti (Pascal, sm_61, 4GiB)
create_worker("minipc-1050ti-linux", properties={'jobs': 6}, max_builds=1),
Index: buildbot/osuosl/master/config/builders.py
===================================================================
--- buildbot/osuosl/master/config/builders.py
+++ buildbot/osuosl/master/config/builders.py
@@ -1616,6 +1616,26 @@
'LD': 'lld'
})},
+ {'name' : "flang-x86_64-windows",
+ 'tags' : ["flang"],
+ 'workernames' : ["minipc-ryzen-win"],
+ 'builddir': "flang-x86_64-windows",
+ 'factory' : UnifiedTreeBuilder.getCmakeWithNinjaBuildFactory(
+ depends_on_projects=['llvm','mlir','clang','flang'],
+ checks=['check-flang'],
+ install_dir="flang.install",
+ extra_configure_args=[
+ "-DCLANG_ENABLE_STATIC_ANALYZER=OFF",
+ "-DCLANG_ENABLE_ARCMT=OFF",
+ "-DCLANG_ENABLE_OBJC_REWRITER=OFF",
+ "-DLLVM_TARGETS_TO_BUILD=X86",
+ "-DLLVM_INSTALL_UTILS=ON",
+ "-DCMAKE_C_COMPILER=cl",
+ "-DCMAKE_CXX_COMPILER=cl",
+ "-DCMAKE_CXX_STANDARD=17",
+ '-DLLVM_PARALLEL_COMPILE_JOBS=4',
+ ])},
+
# Builders responsible building Sphinix documentation.
{'name' : "llvm-sphinx-docs",
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D103199.351227.patch
Type: text/x-patch
Size: 2132 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210610/4c17161a/attachment.bin>
More information about the llvm-commits
mailing list