Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
jami-daemon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
savoirfairelinux
jami-daemon
Commits
a7493391
Commit
a7493391
authored
13 years ago
by
Emmanuel Milou
Browse files
Options
Downloads
Patches
Plain Diff
#8763 Update Hudson script
parent
028243c9
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
hudson-sflphone-script.sh
+53
-43
53 additions, 43 deletions
hudson-sflphone-script.sh
with
53 additions
and
43 deletions
hudson-sflphone-script.sh
+
53
−
43
View file @
a7493391
...
...
@@ -7,49 +7,59 @@
git clean
-f
-d
-x
XML_RESULTS
=
"cppunitresults.xml"
set
-x
# Compile the plugins
pushd
plugins
make distclean
./autogen.sh
./configure
--prefix
=
/usr
make
-j
popd
# Compile the daemon
pushd
daemon
make distclean
./autogen.sh
# Compile pjproject first
pushd
libs/pjproject
./autogen.sh
./configure
make
&&
make dep
popd
./configure
--prefix
=
/usr
make clean
make
-j
make doc
make check
popd
# Run the unit tests for the daemon
# pushd daemon/test
# Remove the previous XML test file
# rm -rf $XML_RESULTS
# ./run_tests.sh || exit 1
# popd
# Compile the client
# pushd gnome
# make distclean
# ./autogen.sh
# ./configure --prefix=/usr
# make clean
# make -j 1
# make check
# popd
if
[
$#
!=
1
]
;
then
echo
"ERROR: Exactly one argument has to be passed. Must be in {daemon, gnome}"
exit
1
fi
if
[
$1
==
"daemon"
]
;
then
# Compile the daemon
pushd
daemon
make distclean
./autogen.sh
# Compile pjproject first
pushd
libs/pjproject
./autogen.sh
./configure
make
&&
make dep
popd
./configure
--prefix
=
/usr
make clean
make
-j
make doc
make check
popd
# Run the unit tests for the daemon
# pushd daemon/test
# Remove the previous XML test file
# rm -rf $XML_RESULTS
# ./run_tests.sh || exit 1
# popd
elif
[
$1
==
"gnome"
]
;
then
# Compile the plugins
pushd
plugins
make distclean
./autogen.sh
./configure
--prefix
=
/usr
make
-j
popd
# Compile the client
pushd
gnome
make distclean
./autogen.sh
./configure
--prefix
=
/usr
make clean
make
-j
1
make check
popd
else
echo
"ERROR: Bad argument. Must be in {daemon, gnome}"
exit
1
fi
# SUCCESS
exit
0
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment