Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
E
eigenpy
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
Stack Of Tasks
eigenpy
Commits
780ce8f1
Commit
780ce8f1
authored
7 years ago
by
jcarpent
Browse files
Options
Downloads
Patches
Plain Diff
[Travis] Add minimal scripts
parent
a08b9162
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
+42
-0
42 additions, 0 deletions
.travis.yml
travis_custom/custom_before_install
+8
-0
8 additions, 0 deletions
travis_custom/custom_before_install
travis_custom/custom_build
+14
-0
14 additions, 0 deletions
travis_custom/custom_build
with
64 additions
and
0 deletions
.travis.yml
0 → 100644
+
42
−
0
View file @
780ce8f1
language
:
generic
python
:
-
"
2.7"
sudo
:
required
dist
:
trusty
compiler
:
-
gcc
# - clang
env
:
global
:
-
secure
:
"
SnIBG/xLIHX3CSvUbqqsX8xTVqIqQ7fFS6HWO6KZQVBsT6yugTwYHbyhNiU531JejYJ/I3ZrDhXfYH3qFZiYxnH1sifvwV+fnTtMXpPN7qPZwIymkjcmm6gJF51e0C7VOfUbvKFv0ngwj+ul21rgZSMuoEvxPK0WxtE3/ZSfn9c="
-
APT_DEPENDENCIES="doxygen libeigen3-dev "
-
DEBSIGN_KEYID=5AE5CD75
-
CC=gcc
-
DO_COVERAGE_ON_BRANCH="master;release"
-
DO_CPPCHECK_ON_BRANCH=""
-
DO_INSTALL_DOC_EXCEPT_ON_BRANCH=""
matrix
:
-
BUILDTYPE=Release
-
BUILDTYPE=Debug
notifications
:
email
:
-
pinocchio@laas.fr
branches
:
only
:
-
master
-
debian
-
devel
matrix
:
allow_failures
:
-
compiler
:
before_install
:
./travis_custom/custom_before_install
install
:
-
pip install --user coveralls
-
pip install --user numpy
script
:
-
export CMAKE_ADDITIONAL_OPTIONS="-DCMAKE_BUILD_TYPE=${BUILDTYPE}"
-
sudo free -m -t
-
./.travis/run ../travis_custom/custom_build
after_failure
:
./.travis/run after_failure
after_success
:
-
./.travis/run after_success
This diff is collapsed.
Click to expand it.
travis_custom/custom_before_install
0 → 100755
+
8
−
0
View file @
780ce8f1
#!/bin/bash
set
-e
# Setup environment variables.
export
APT_DEPENDENCIES
=
"doxygen libboost-test-dev libboost-python-dev libeigen3-dev python2.7-dev python-numpy"
# When this script is called the current directory is ./custom_travis
.
./.travis/run ../.travis/before_install
This diff is collapsed.
Click to expand it.
travis_custom/custom_build
0 → 100755
+
14
−
0
View file @
780ce8f1
#!/bin/bash
set
-e
# Setup environment variables.
export
CMAKE_ADDITIONAL_OPTIONS
=
"
${
CMAKE_ADDITIONAL_OPTIONS
}
-DBUILD_BENCHMARK=
\"
ON
\"
-DBUILD_UNIT_TESTS=
\"
ON
\"
-DCMAKE_CXX_FLAGS=-DBOOST_SYSTEM_NO_DEPRECATED"
if
[[
";
${
DO_INSTALL_DOC_EXCEPT_ON_BRANCH
}
;"
==
*
";
${
CI_BRANCH
}
;"
*
]]
;
then
export
CMAKE_ADDITIONAL_OPTIONS
=
"
${
CMAKE_ADDITIONAL_OPTIONS
}
-DINSTALL_DOCUMENTATION=
\"
OFF
\"
"
else
export
CMAKE_ADDITIONAL_OPTIONS
=
"
${
CMAKE_ADDITIONAL_OPTIONS
}
-DINSTALL_DOCUMENTATION=
\"
ON
\"
"
fi
# Setup environment variables.
.
./.travis/run ../.travis/build
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