1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
# the local spot that we put everything when done, before copying
# to remote hosts
STAGING_DIR = ./BUILD
# host name of the machine to use for windows builds
WIN_HOST = cyclops
# Where is the build dir from the remote machine's perspective?
WIN_BUILD = /c/BUILD
# Just like the above
OSX_HOST_carbon = smallfry
OSX_HOST_cocoa = vm-macosx3
OSX_BUILD = /BUILD
# Almost the same... Hosts and other info comes from the Job
# descriptions in this case
LINUX_BUILD = /tmp/BUILD
# Upload server locations
UPLOAD_HOST = wxpython.kosoftworks.com
UPLOAD_USER = wxpython_ko
UPLOAD_PREVIEW_ROOT = /var/www/vhosts/kosoftworks.com/subdomains/wxpython/httpdocs/preview
UPLOAD_RELEASE_ROOT = /var/www/vhosts/kosoftworks.com/subdomains/wxpython/httpdocs/release
UPLOAD_METHOD = ssh
UPLOAD_URL_ROOT = http://wxPython.kosoftworks.com
# defaults for build options
KIND = dryrun
skipsource = no
onlysource = no
skipdocs = no
skipwin = no
skiposx = no
skipdeb = no
skiprpm = no
skipclean = no
skipupload = no
skipnewdocs = yes
startcohost = yes
buildansi = no
|