Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
hpp-statistics
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
Humanoid Path Planner
hpp-statistics
Commits
5a9c7b1f
Commit
5a9c7b1f
authored
8 years ago
by
Joseph Mirabel
Committed by
Joseph Mirabel
8 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Add travis support
parent
a4a7cad9
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.travis.yml
+34
-0
34 additions, 0 deletions
.travis.yml
.travis/build
+100
-0
100 additions, 0 deletions
.travis/build
README.md
+2
-0
2 additions, 0 deletions
README.md
with
136 additions
and
0 deletions
.travis.yml
0 → 100644
+
34
−
0
View file @
5a9c7b1f
language
:
cpp
sudo
:
required
dist
:
trusty
branches
:
only
:
-
master
-
devel
compiler
:
-
gcc
addons
:
apt
:
packages
:
-
g++
-
cmake
-
libboost-dev
-
libboost-filesystem-dev
-
libboost-system-dev
-
git
-
flex
-
bison
-
asciidoc
-
autoconf
-
source-highlight
-
doxygen
-
libtinyxml-dev
-
libltdl-dev
-
liblog4cxx10-dev
-
python2.7-dev
-
doxygen-latex
before_install
:
-
git submodule update --init --recursive
script
:
./.travis/build
# after_script: ./.travis/run
This diff is collapsed.
Click to expand it.
.travis/build
0 → 100755
+
100
−
0
View file @
5a9c7b1f
#!/bin/bash
set
-
ev
# Directories.
root_dir
=
`pwd`
build_dir
=
"
$root_dir/_travis/build
"
install_dir
=
"
$root_dir/_travis/install
"
export
DEVEL_DIR
=
"
$root_dir/_travis/
"
# Shortcuts.
git_clone
=
"
git clone --recursive --quiet
"
git_branch
=
devel
# Create layout.
rm
-
rf
"
$build_dir
"
"
$install_dir
"
mkdir
-
p
"
$build_dir
"
mkdir
-
p
"
$install_dir
"
# Setup environment variables.
export
LD_LIBRARY_PATH
=
"
$install_dir/lib:$LD_LIBRARY_PATH
"
export
LD_LIBRARY_PATH
=
"
$install_dir/lib/`dpkg-architecture -qDEB_BUILD_MULTIARCH`:$LD_LIBRARY_PATH
"
export
PKG_CONFIG_PATH
=
"
$install_dir/lib/pkgconfig:$PKG_CONFIG_PATH
"
export
PKG_CONFIG_PATH
=
"
$install_dir/lib/`dpkg-architecture -qDEB_BUILD_MULTIARCH`/pkgconfig:$PKG_CONFIG_PATH
"
export
PATH
=
$
DEVEL_DIR
/
install
/
sbin
:
$
DEVEL_DIR
/
install
/
bin
:
$
PATH
# export PKG_CONFIG_PATH=$DEVEL_DIR/install/lib/pkgconfig/
# export PYTHONPATH=$DEVEL_DIR/install/lib/python2.7/site-packages:$DEVEL_DIR/install/lib/python2.7/dist-packages:$PYTHONPATH
# export LD_LIBRARY_PATH=$DEVEL_DIR/install/lib:$LD_LIBRARY_PATH
cmake_args
=
"
-DCMAKE_INSTALL_LIBDIR=lib -DCMAKE_INSTALL_PREFIX:STRING=
'
$install_dir
'
-DCMAKE_BUILD_TYPE=Release
"
make_args
=
"
-s -j4
"
install_eigen3
()
{
echo
"
--> Compiling Eigen
"
mkdir
-
p
"
$build_dir
"
cd
"
$build_dir
"
wget
--
quiet
-
O
-
"
http://bitbucket.org/eigen/eigen/get/3.2.4.tar.bz2
"
|
tar
-
xj
mv
eigen
-
eigen
-
10219
c95fe65
eigen3
cd
"
$build_dir/eigen3
"
mkdir
build
cd
build
cmake
$
cmake_args
-
Dpkg_config_libdir
=
"
$install_dir/lib
"
..
make
$
make_args
install
}
install_doxygen
()
{
echo
"
--> Compiling Doxygen
"
mkdir
-
p
"
$build_dir
"
cd
"
$build_dir
"
wget
--
quiet
-
O
-
"
https://github.com/doxygen/doxygen/archive/Release_1_8_10.tar.gz
"
|
tar
-
xz
;
cd
"
$build_dir/doxygen-Release_1_8_10
"
mkdir
build
cd
build
cmake
$
cmake_args
..
make
$
make_args
install
}
check_dependency
()
{
echo
"
--> Compiling $1
"
mkdir
-
p
"
$build_dir/$1
"
cd
"
$build_dir
"
$
git_clone
"
git://github.com/$1
"
"
$1
"
cd
"
$build_dir/$1
"
mkdir
build
cd
build
cmake
$
cmake_args
..
make
$
make_args
}
install_dependency
()
{
echo
"
--> Compiling $1
"
mkdir
-
p
"
$build_dir/$1
"
cd
"
$build_dir
"
if
[
"
$#
"
-
eq
"
2
"
];
then
branch
=
$
2
else
branch
=
$
git_branch
fi
$
git_clone
--
branch
$
branch
"
git://github.com/$1
"
"
$1
"
cd
"
$build_dir/$1
"
mkdir
build
cd
build
cmake
$
cmake_args
..
make
$
make_args
install
}
# Install dependencies
install_dependency
humanoid
-
path
-
planner
/
hpp
-
util
devel
# Compile and run tests
cd
"
$build_dir
"
cmake
"
$root_dir
"
-
DCMAKE_INSTALL_PREFIX
=
"
$install_dir
"
\
-
DCMAKE_INSTALL_PREFIX
:
STRING
=
"
$install_dir
"
make
$
make_args
make
$
make_args
test
make
$
make_args
install
This diff is collapsed.
Click to expand it.
README.md
+
2
−
0
View file @
5a9c7b1f
# hpp-statistics
[

](https://travis-ci.org/humanoid-path-planner/hpp-statistics)
This package is part of the [HPP] software and provides a few tools for basic statistics.
### Version
...
...
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