Skip to content
This repository has been archived by the owner on Oct 9, 2018. It is now read-only.

Commit

Permalink
Moved lab-specific buildbot slave config out of start_buildbot_slave_…
Browse files Browse the repository at this point in the history
…local.sh
  • Loading branch information
cstawarz committed Feb 16, 2010
1 parent 762acc8 commit 9b2b60a
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 2 deletions.
1 change: 1 addition & 0 deletions buildbot_slave/.gitignore
@@ -0,0 +1 @@
local_config.sh
2 changes: 2 additions & 0 deletions buildbot_slave/coxlab_config.sh
@@ -0,0 +1,2 @@
ADMIN_INFO="Dave <cox@rowland.harvard.edu>"
MACHINE_DESCRIPTION="MacBook Pro"
2 changes: 2 additions & 0 deletions buildbot_slave/dicarlolab_config.sh
@@ -0,0 +1,2 @@
ADMIN_INFO="Christopher Stawarz <cstawarz@mit.edu>"
MACHINE_DESCRIPTION="Mac mini (Intel Core 2 Duo)"
8 changes: 6 additions & 2 deletions buildbot_slave/start_buildbot_slave_local.sh
Expand Up @@ -9,8 +9,12 @@ HOST="localhost"
PORT="7355"
ARCHITECTURE="x86_64-OSX-10.6"
USER=`whoami`
ADMIN_INFO="Dave <cox@rowland.harvard.edu>"
MACHINE_DESCRIPTION="MacBook Pro"

if ! [ -f local_config.sh ]; then
echo "ERROR: local_config.sh not found"
exit 1
fi
. local_config.sh

mkdir -p $SLAVE_DIRECTORY
rm -rf $SLAVE_DIRECTORY
Expand Down

0 comments on commit 9b2b60a

Please sign in to comment.