Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Bakker <jeroen@blender.org>2021-07-27 16:06:35 +0300
committerJeroen Bakker <jeroen@blender.org>2021-07-27 16:06:43 +0300
commit07688ca2d2d6af5ec2de4905fafb2b5b65733afe (patch)
tree567b8a0eddb225541858f630a486089a78d339af /build_files/config
parentdb4fe8e3223b36615e53cf64f4a55f6d974c4597 (diff)
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.
Diffstat (limited to 'build_files/config')
-rw-r--r--build_files/config/pipeline_config.yaml70
1 files changed, 70 insertions, 0 deletions
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: {}