Initial commit of blenders buildbot configuration

This commit is contained in:
2015-06-14 20:23:25 +02:00
commit 327d4f6b8a
25 changed files with 5762 additions and 0 deletions

18
maintenance/cleanup.sh Executable file
View File

@@ -0,0 +1,18 @@
#!/bin/sh
ROOT="/data/buildbot-master/"
DIRS="linux_glibc211_i386_scons
linux_glibc211_x86_64_scons
mac_i386_10_6_scons
mac_x86_64_10_6_scons
mingw_win64_scons
uploaded
win32_cmake_vc2013
win32_scons_vc2013
win64_cmake_vc2013
win64_scons_vc2013"
for DIR in $DIRS; do
find "${ROOT}/$DIR" -type f -mtime +14 -exec rm -f {} \;
done