Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

.travis.yml: re-enable jade and hydro with released deb #375

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,17 +34,17 @@ env:
- ROS_DISTRO=jade USE_DEB=source TEST_PKGS="roseus roseus_smach" NOT_TEST_INSTALL=true
matrix:
allow_failures:
- env: ROS_DISTRO=hydro USE_DEB=true ROS_REPOSITORY_PATH=http://packages.ros.org/ros/ubuntu
- env: ROS_DISTRO=jade USE_DEB=true TEST_PKGS="roseus roseus_smach" NOT_TEST_INSTALL=true
- env: ROS_DISTRO=jade USE_DEB=true ROS_REPOSITORY_PATH=http://packages.ros.org/ros/ubuntu TEST_PKGS="roseus roseus_smach" NOT_TEST_INSTALL=true
# - env: ROS_DISTRO=hydro USE_DEB=true ROS_REPOSITORY_PATH=http://packages.ros.org/ros/ubuntu
# - env: ROS_DISTRO=jade USE_DEB=true TEST_PKGS="roseus roseus_smach" NOT_TEST_INSTALL=true
# - env: ROS_DISTRO=jade USE_DEB=true ROS_REPOSITORY_PATH=http://packages.ros.org/ros/ubuntu TEST_PKGS="roseus roseus_smach" NOT_TEST_INSTALL=true
# - env: ROS_DISTRO=hydro ROSWS=wstool BUILDER=catkin USE_DEB=false
# - env: ROS_DISTRO=indigo ROSWS=wstool BUILDER=catkin USE_DEB=true
# - env: ROS_DISTRO=indigo ROSWS=wstool BUILDER=catkin USE_DEB=false
before_script:
- set -x
- if [ "${INSTALL_SRC}" != "" ] ;then sudo apt-get install python-yaml; rm .travis.rosinstall; for src in $INSTALL_SRC; do name=`basename $src`; python -c "import yaml;print yaml.dump([{'git':{'uri':'$src','local-name':'$name'}}], default_flow_style=False)" >> .travis.rosinstall; done; cat .travis.rosinstall; export USE_DEB=false; fi; # set USE_DEB false to enable .travis.rosinstall
- if [ "${TRAVIS_SECURE_ENV_VARS}" == "true" ]; then openssl aes-256-cbc -K $encrypted_b79fc5843df3_key -iv $encrypted_b79fc5843df3_iv -in .secrets.tar.enc -out .secrets.tar -d; tar -C ~/ -xvf .secrets.tar; export INSTALL_SRC="$INSTALL_SRC $INSTALL_SRC_SECURE"; export TEST_PKGS="$TEST_PKGS $TEST_PKGS_SECURE"; fi
- export REPOSITORY_NAME=`basename $PWD`
- if [ "${INSTALL_SRC}" != "" ] ;then sudo apt-get install python-yaml; rm .travis.rosinstall; for src in $INSTALL_SRC; do name=`basename $src`; python -c "import yaml;print yaml.dump([{'git':{'uri':'$src','local-name':'$name'}}], default_flow_style=False)" >> .travis.rosinstall; done; cat .travis.rosinstall; export USE_DEB=false; fi; # set USE_DEB false to enable .travis.rosinstall
script:
- .travis/travis.sh
after_success:
Expand Down