forked from catkin/catkin_tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from Intermodalics/merge/upstream/0.8.2
Merge upstream version 0.8.2
- Loading branch information
Showing
98 changed files
with
1,851 additions
and
910 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
name: build | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
strategy: | ||
matrix: | ||
versions: | ||
- dist: ubuntu-18.04 | ||
python: 3.6 | ||
catkin: indigo-devel | ||
- dist: ubuntu-18.04 | ||
python: 3.7 | ||
catkin: indigo-devel | ||
- dist: ubuntu-18.04 | ||
python: 3.8 | ||
catkin: indigo-devel | ||
- dist: ubuntu-20.04 | ||
python: 3.9 | ||
catkin: indigo-devel | ||
|
||
runs-on: ${{ matrix.versions.dist }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python ${{ matrix.versions.python }} | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.versions.python }} | ||
- name: Install package and dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install . | ||
pip install --upgrade empy sphinx_rtd_theme sphinxcontrib-spelling nose coverage flake8 mock | ||
- name: Set up catkin | ||
run: | | ||
git clone https://github.com/ros/catkin.git -b ${{ matrix.versions.catkin }} /tmp/catkin_source | ||
mkdir /tmp/catkin_source/build | ||
pushd /tmp/catkin_source/build | ||
cmake .. && make | ||
popd | ||
- name: Test catkin_tools | ||
run: | | ||
source /tmp/catkin_source/build/devel/setup.bash | ||
nosetests -s tests | ||
- name: Build documentation | ||
run: | | ||
pushd docs | ||
make html | ||
sphinx-build -b spelling . build -t use_spelling | ||
popd |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# catkin_tools [![Build Status](https://travis-ci.org/catkin/catkin_tools.svg?branch=master)](https://travis-ci.org/catkin/catkin_tools) | ||
# catkin_tools [![Build Status](https://github.com/catkin/catkin_tools/actions/workflows/workflow.yml/badge.svg)](https://github.com/catkin/catkin_tools/actions/workflows/workflow.yml) | ||
|
||
Command line tools for working with [catkin](https://github.com/ros/catkin) | ||
|
||
Documentation: http://catkin-tools.readthedocs.org/ | ||
Documentation: https://catkin-tools.readthedocs.org/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.