[#3947] Add a script to be executed by Hudson - just a test

This commit is contained in:
Emmanuel Milou
2010-08-30 18:14:28 -04:00
parent 88f63de6c9
commit f1354f64a0

18
hudson-sflphone-script.sh Executable file
View File

@ -0,0 +1,18 @@
#!/bin/bash
#
# Script used by Hudson continious integration server to build SFLphone
#
# Author: Emmanuel Milou <emmanuel.milou@savoirfairelinux.com>
pushd sflphone-common
./autogen.sh
./configure --prefix=/usr
make
popd
pushd sflphone-client-gnome
./autogen.sh
./configure --prefix=/usr
make
popd