[Buildbot-devel] mutliple svn branches

David Froger david.froger at gmail.com
Tue Nov 22 14:54:01 UTC 2011


My 2 problems are both solved, I just have to use workdir...

#checkout source code
f.addStep( \
    SVN( \
        baseURL='https://path/to/my/repo/%%BRANCH%%',
        defaultBranch='trunk',
        username="myusername",
        password="myuserpass",
        workdir="./build/trunk",
        mode='incremental',
        haltOnFailure=True,
    ),
)

#checkout data
f.addStep( \
    SVN( \
        baseURL='https://path/to/my/repo/%%BRANCH%%',
        defaultBranch='data',
        username="myusername",
        password="myuserpass",
        workdir="./build/other_data_name",
        mode='incremental',
        haltOnFailure=True,
    ),
)
-- 




More information about the devel mailing list