Buildbot: Makefile.special_environment

File Makefile.special_environment, 0.7 kB (added by youse, 8 months ago)

Makefile displaying how to set a custom environment for the build slave

Line 
1# -*- makefile -*-
2
3# This is a simple makefile which lives in a buildmaster/buildslave
4# directory (next to the buildbot.tac file). It allows you to start/stop the
5# master or slave by doing 'make go' or 'make stop'.
6
7go:
8        PATH="/usr/local/buildbot/bin:/usr/local/subversion/bin:/usr/local/gnu/bin:/usr/local/bin:/usr/bin:/bin" \
9        CC="gcc4 -m64" \
10        CCC="g++4 -m64" \
11        CXX="g++4 -m64" \
12        LDFLAGS="-L/usr/local/algebra/gmp/lib/amd64 -R/usr/local/algebra/gmp/lib/amd64 -L/usr/local/algebra/givaro/lib/amd64 -R/usr/local/algebra/givaro/lib/amd64 -L/usr/local/algebra/atlas/lib/amd64 -R/usr/local/algebra/atlas/lib/amd64 -lm -latlas -lcblas" \
13        buildbot start /usa/youse/buildbot/
14
15stop:
16        buildbot stop /usa/youse/buildbot/
17
18log:
19        tail -f twistd.log