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

fix CI missing catkin_pkg and console_bridge_vendor #105

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ install:
- set "PATH=%PATH%;C:\Python35"
- python --version
- python -m pip install -U setuptools pip
- python -m pip install catkin_pkg
- python -m pip install EmPy
- python -m pip install trollius
- python -m pip install pyparsing
Expand All @@ -23,6 +24,7 @@ install:
- cd src
- python -c "import shutil; shutil.copytree('../..', './class_loader', ignore=shutil.ignore_patterns('build'))"
- git clone https://github.com/ros/console_bridge.git
- git clone https://github.com/ros2/console_bridge_vendor.git
- git clone https://github.com/ros2/poco_vendor.git
- mkdir ament
- cd ament
Expand Down
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ install:
else
if ! brew ls --version cmake &>/dev/null; then brew install cmake; fi
fi
- pip install catkin_pkg
script:
- mkdir -p build/src/ament
- cd build
Expand All @@ -33,6 +34,7 @@ script:
- git clone https://github.com/ament/googletest
- cd ..
- git clone https://github.com/ros/console_bridge.git
- git clone https://github.com/ros2/console_bridge_vendor.git
- git clone https://github.com/ros2/poco_vendor.git
- cd ..
# Link source into workspace's source space
Expand Down