[Bf-blender-cvs] [07688ca2d2d] master: Added YAML builtbot config file.

Jeroen Bakker noreply at git.blender.org
Tue Jul 27 15:06:44 CEST 2021


Commit: 07688ca2d2d6af5ec2de4905fafb2b5b65733afe
Author: Jeroen Bakker
Date:   Tue Jul 27 15:06:35 2021 +0200
Branches: master
https://developer.blender.org/rB07688ca2d2d6af5ec2de4905fafb2b5b65733afe

Added YAML builtbot config file.

Builtbot is switching over from json to yaml. Both
configuration files should be kept in sync for now.

The json file will be removed when everything works as expected.

===================================================================

A	build_files/config/pipeline_config.yaml

===================================================================

diff --git a/build_files/config/pipeline_config.yaml b/build_files/config/pipeline_config.yaml
new file mode 100644
index 00000000000..611df59caec
--- /dev/null
+++ b/build_files/config/pipeline_config.yaml
@@ -0,0 +1,70 @@
+#
+# Used by Buildbot build pipeline make_update.py script only for now
+# We intended to update the make_update.py in the branches to use this file eventually
+#
+update-code:
+    git:
+        submodules:
+        -   branch: master
+            commit_id: HEAD
+            path: release/scripts/addons
+        -   branch: master
+            commit_id: HEAD
+            path: release/scripts/addons_contrib
+        -   branch: master
+            commit_id: HEAD
+            path: release/datafiles/locale
+        -   branch: master
+            commit_id: HEAD
+            path: source/tools
+    svn:
+        libraries:
+            darwin-arm64:
+                branch: trunk
+                commit_id: HEAD
+                path: lib/darwin_arm64
+            darwin-x86_64:
+                branch: trunk
+                commit_id: HEAD
+                path: lib/darwin
+            linux-x86_64:
+                branch: trunk
+                commit_id: HEAD
+                path: lib/linux_centos7_x86_64
+            windows-amd64:
+                branch: trunk
+                commit_id: HEAD
+                path: lib/win64_vc15
+        tests:
+            branch: trunk
+            commit_id: HEAD
+            path: lib/tests
+        benchmarks:
+            branch: trunk
+            commit_id: HEAD
+            path: lib/benchmarks
+
+#
+# Buildbot only configs
+#
+buildbot:
+    gcc:
+        version: '9.0.0'
+    cuda10:
+        version: '10.1.0'
+    cuda11:
+        version: '11.4.0'
+    optix:
+        version: '7.1.0'
+    cmake:
+        default:
+            version: any
+            overrides: {}
+        darwin-arm64:
+            overrides: {}
+        darwin-x86_64:
+            overrides: {}
+        linux-x86_64:
+            overrides: {}
+        windows-amd64:
+            overrides: {}



More information about the Bf-blender-cvs mailing list