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

CI: Removing Lunar build AND fixing tests. #47

Merged
merged 1 commit into from May 13, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
29 changes: 3 additions & 26 deletions .circleci/config.yml
Expand Up @@ -22,34 +22,10 @@ jobs:
- run:
name: Run Tests
command: |
cd ..
catkin run_tests
working_directory: ~/src

lunar:
docker:
- image: autonomoustuff/docker-builds:lunar-ros-base
steps:
- checkout
- run:
name: Set Up Container
command: |
apt-get update -qq
source `find /opt/ros -name setup.bash | sort | head -1`
rosdep install --from-paths . --ignore-src -y
cd ..
catkin init
catkin config --extend /opt/ros/$ROS_DISTRO
- run:
name: Build
command: |
cd ..
catkin build
- run:
name: Run Tests
command: |
cd ..
catkin run_tests
catkin_test_results
working_directory: ~/src

melodic:
Expand All @@ -74,14 +50,15 @@ jobs:
- run:
name: Run Tests
command: |
source `find /opt/ros -name setup.bash | sort | head -1`
cd ..
catkin run_tests
catkin_test_results
working_directory: ~/src

workflows:
version: 2
ros_build:
jobs:
- kinetic
- lunar
- melodic