Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
hpp-fcl
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
Guilhem Saurel
hpp-fcl
Commits
1f826bae
Commit
1f826bae
authored
10 years ago
by
Jeongseok Lee
Browse files
Options
Downloads
Patches
Plain Diff
Support Travis-CI
parent
49a6edfa
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.travis.yml
+41
-0
41 additions, 0 deletions
.travis.yml
README.md
+1
-2
1 addition, 2 deletions
README.md
ci/install_linux.sh
+24
-0
24 additions, 0 deletions
ci/install_linux.sh
ci/install_osx.sh
+6
-0
6 additions, 0 deletions
ci/install_osx.sh
with
72 additions
and
2 deletions
.travis.yml
0 → 100644
+
41
−
0
View file @
1f826bae
language
:
cpp
os
:
-
linux
-
osx
compiler
:
-
gcc
-
clang
env
:
-
BUILD_TYPE=Debug
-
BUILD_TYPE=Release
matrix
:
exclude
:
-
os
:
osx
compiler
:
gcc
install
:
# Install dependencies for FCL
-
if [ "$TRAVIS_OS_NAME" = "linux" ]; then 'ci/install_linux.sh' ; fi
-
if [ "$TRAVIS_OS_NAME" = "osx" ]; then 'ci/install_osx.sh' ; fi
script
:
# Create build directory
-
mkdir build
-
cd build
# Configure
-
cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE ..
# Build
-
make -j4
# Run unit tests
-
make test
# Make sure we can install with no issues
-
sudo make -j4 install
This diff is collapsed.
Click to expand it.
README.md
+
1
−
2
View file @
1f826bae
## FCL -- The Flexible Collision Library
## FCL -- The Flexible Collision Library [](https://travis-ci.org/flexible-collision-library/fcl)
FCL is a library for performing three types of proximity queries on a pair of geometric models composed of triangles.
-
Collision detection: detecting whether the two models overlap, and optionally, all of the triangles that overlap.
...
...
This diff is collapsed.
Click to expand it.
ci/install_linux.sh
0 → 100755
+
24
−
0
View file @
1f826bae
sudo
add-apt-repository
--yes
ppa:libccd-debs/ppa
sudo
apt-get
-qq
update
########################
# Mendatory dependencies
########################
sudo
apt-get
-qq
--yes
--force-yes
install
cmake
sudo
apt-get
-qq
--yes
--force-yes
install
libboost-all-dev
sudo
apt-get
-qq
--yes
--force-yes
install
libccd-dev
########################
# Optional dependencies
########################
sudo
apt-get
-qq
--yes
--force-yes
install
libflann-dev
# Octomap
git clone https://github.com/OctoMap/octomap
cd
octomap
git checkout tags/v1.6.8
mkdir
build
cd
build
cmake ..
make
sudo
make
install
This diff is collapsed.
Click to expand it.
ci/install_osx.sh
0 → 100755
+
6
−
0
View file @
1f826bae
brew tap homebrew/science
brew
install
git
brew
install
cmake
brew
install
boost
brew
install
libccd
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