Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
pinocchio
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
pinocchio
Commits
8f2799a6
Verified
Commit
8f2799a6
authored
5 years ago
by
Justin Carpentier
Browse files
Options
Downloads
Patches
Plain Diff
travis: really check Python3
parent
32cdedd8
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.travis.yml
+4
-4
4 additions, 4 deletions
.travis.yml
travis_custom/custom_before_install
+7
-1
7 additions, 1 deletion
travis_custom/custom_before_install
with
11 additions
and
5 deletions
.travis.yml
+
4
−
4
View file @
8f2799a6
...
...
@@ -32,16 +32,16 @@ jobs:
include
:
-
dist
:
xenial
env
:
BUILD_WITH_COLLISION_SUPPORT=OFF
python
:
"
2.7
"
python
:
2.7
-
dist
:
trusty
env
:
BUILD_WITH_COLLISION_SUPPORT=ON
python
:
"
2.7
"
python
:
2.7
-
dist
:
xenial
env
:
BUILD_WITH_COLLISION_SUPPORT=ON
python
:
"
2.7
"
python
:
2.7
-
dist
:
xenial
env
:
BUILD_WITH_COLLISION_SUPPORT=ON
python
:
"
3.5
"
python
:
3.5
allow_failures
:
-
compiler
:
...
...
This diff is collapsed.
Click to expand it.
travis_custom/custom_before_install
+
7
−
1
View file @
8f2799a6
...
...
@@ -14,8 +14,14 @@ sudo free -m -t
# Setup environment variables.
export
APT_DEPENDENCIES
=
"doxygen libboost-system-dev libboost-test-dev libboost-filesystem-dev libboost-program-options-dev libeigen3-dev liburdfdom-dev texlive-font-utils"
# Add Python dependency
export
APT_DEPENDENCIES
=
$APT_DEPENDENCIES
" libboost-python-dev robotpkg-py27-eigenpy python2.7-dev python-numpy"
echo
"TRAVIS_PYTHON_VERSION=
$TRAVIS_PYTHON_VERSION
"
if
[[
$TRAVIS_PYTHON_VERSION
-gt
3
]]
;
then
export
APT_DEPENDENCIES
=
$APT_DEPENDENCIES
" libboost-python-dev robotpkg-py35-eigenpy python3.5-dev python-numpy"
else
export
APT_DEPENDENCIES
=
$APT_DEPENDENCIES
" libboost-python-dev robotpkg-py27-eigenpy python2.7-dev python-numpy"
fi
# Add Geometry dependencies
if
[[
$BUILD_WITH_COLLISION_SUPPORT
-eq
ON
]]
;
then
...
...
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