[PATCH] D26783: Set up an AVR buildslave

Dylan McKay via llvm-commits llvm-commits at lists.llvm.org
Fri Nov 18 14:56:15 PST 2016


This revision was automatically updated to reflect the committed changes.
Closed by commit rL287392: Set up an AVR buildslave (authored by dylanmckay).

Changed prior to commit:
  https://reviews.llvm.org/D26783?vs=78307&id=78588#toc

Repository:
  rL LLVM

https://reviews.llvm.org/D26783

Files:
  zorg/trunk/buildbot/osuosl/master/config/builders.py
  zorg/trunk/buildbot/osuosl/master/config/slaves.py


Index: zorg/trunk/buildbot/osuosl/master/config/slaves.py
===================================================================
--- zorg/trunk/buildbot/osuosl/master/config/slaves.py
+++ zorg/trunk/buildbot/osuosl/master/config/slaves.py
@@ -104,6 +104,9 @@
         create_slave("hexagon-build-03", properties={'jobs': 16, 'loadaverage':32},
             max_builds=1),
 
+        # Ubuntu x86-64
+        create_slave("avr-build-01", properties={'jobs': 2}, max_builds=1),
+
         # Cavium Octeon II V0.8, MIPS64r2 big endian, Debian Jessie
         create_slave("mipsswbrd002", properties={'jobs' : 6}, max_builds=1),
 
Index: zorg/trunk/buildbot/osuosl/master/config/builders.py
===================================================================
--- zorg/trunk/buildbot/osuosl/master/config/builders.py
+++ zorg/trunk/buildbot/osuosl/master/config/builders.py
@@ -72,6 +72,18 @@
                           "-DCMAKE_C_COMPILER:FILEPATH=/local/clang+llvm-3.7.1-x86_64-linux-gnu-ubuntu-14.04/bin/clang",
                           "-DCMAKE_CXX_COMPILER:FILEPATH=/local/clang+llvm-3.7.1-x86_64-linux-gnu-ubuntu-14.04/bin/clang++"
                         ])}
+        {'name': "llvm-avr-linux",
+         'slavenames':["avr-build-01"],
+         'builddir':"llvm-avr-linux",
+         'factory': LLVMBuilder.getLLVMCMakeBuildFactory(
+                        timeout=40, config_name='Release',
+                        enable_shared=True,
+                        extra_cmake_args=[
+                          "-G", "Unix Makefiles",
+                          "-DCMAKE_BUILD_TYPE:STRING=Release",
+                          "-DLLVM_TARGETS_TO_BUILD:STRING=AVR",
+                          "-DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD:STRING=AVR",
+                        ])}
         ]
 
 # Clang fast builders.


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D26783.78588.patch
Type: text/x-patch
Size: 1809 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20161118/080e8d54/attachment.bin>


More information about the llvm-commits mailing list