stk-code_catmod/tools/nightbuilder/config.py
samuncle 0efdf0744a Add the new version of the nightbuilder client
git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@11954 178a84e3-b1eb-0310-8ba1-8eac791a3b58
2012-11-16 00:34:10 +00:00

44 lines
1.1 KiB
Python

#!/bin/python
# From Supertuxkart SVN revision $Revision$
# Copyright (C) 2012 Jean-manuel clemencon (samuncle)
# configuration for nightly builder
CONFIG = {
# Directory options
"WORKINGDIR" : "/home/tux/stkalpha/supertuxkart",
"BUILDDIR" : "/home/tux/stkalpha/supertuxkart/cmake_build",
"COMPRESSDIR" : "/home/tux/stkbeta",
"LOGDIR" : "/home/tux/stkalpha",
"SCRIPTDIR" : "/home/tux/stkalpha/nightbuilder",
# directory in the server
"REMOTEDIR" : "/web/public/stknigtly",
# Build options
"JOBMAX" : 3,
# FTP options
"FTPHOST" : "ftp.tux.net",
"FTPUSER" : "tux",
"FTPPASS" : "hell0",
# other
"PLATFORM" : "64",
"OS" : "lin",
"VERSION" : "svn"
}
# arguments by default
# PLEASE Don't edit this section if you don't know what you are doing. Thanks
ARG = {
"BIN" : True,
"DATA" : True,
"CLEAN" : False,
"SEND" : True,
"FORCE" : True,
"UPDATE" : True,
"JOB" : 2,
"HELP" : False
}