Skip to content

Commit

Permalink
autoconf process for buildbot
Browse files Browse the repository at this point in the history
  • Loading branch information
sqs committed Aug 30, 2010
1 parent 6b0ce22 commit 0cb04b0
Show file tree
Hide file tree
Showing 4 changed files with 14,137 additions and 6 deletions.
7 changes: 4 additions & 3 deletions test/buildbot/master.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,11 @@ c['change_source'] = [ PBChangeSource() ]
from buildbot.process import factory
from buildbot.steps import source, shell
source = source.Git(repourl='git://github.com/sqs/tcpcrypt.git')
clean = shell.ShellCommand(command=["make", "-C", "user", "clean"])
build = shell.Compile(command=["make", "-C", "user"])
configure = shell.Configure(command="cd user && ./configure --prefix=/usr")
clean = shell.ShellCommand(command="cd user && make clean")
build = shell.Compile(command="cd user && make")
test = shell.Test(command=["sh", "user/test/test_sessid.sh"])
f = factory.BuildFactory([source, clean, build, test])
f = factory.BuildFactory([source, configure, clean, build, test])
c['builders'] = [
dict(name='ubuntu-lucid-i386',
slavename='ubuntu-lucid-i386',
Expand Down
1 change: 0 additions & 1 deletion user/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ Makefile.in
aclocal.m4
config.log
config.status
configure
config.h
autom4te.cache
stamp-h1
Expand Down
2 changes: 0 additions & 2 deletions user/bootstrap.sh

This file was deleted.

Loading

0 comments on commit 0cb04b0

Please sign in to comment.