Added Github codeowners, issue template, CI. Also, fixed linting. #14
This file contains hidden or 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
name: wireless_watcher_ci | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: "0 0 * * *" # every day at midnight | |
jobs: | |
wireless_watcher_osrf_industrial_ci_humble: | |
name: Humble OSRF Industrial | |
strategy: | |
matrix: | |
env: | |
- {ROS_REPO: testing, ROS_DISTRO: humble} | |
- {ROS_REPO: main, ROS_DISTRO: humble} | |
fail-fast: false | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: 'ros-industrial/industrial_ci@master' | |
env: ${{matrix.env}} | |
wireless_watcher_cpr_ci_humble: | |
name: Humble Clearpath Release | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ros-tooling/setup-ros@v0.7 | |
with: | |
required-ros-distributions: humble | |
- name: clearpath-package-server | |
run: | | |
sudo apt install wget | |
wget https://packages.clearpathrobotics.com/public.key -O - | sudo apt-key add - | |
sudo sh -c 'echo "deb https://packages.clearpathrobotics.com/stable/ubuntu $(lsb_release -cs) main" > /etc/apt/sources.list.d/clearpath-latest.list' | |
sudo apt-get update | |
- uses: ros-tooling/action-ros-ci@v0.3 | |
id: action_ros_ci_step | |
with: | |
target-ros2-distro: humble | |
package-name: | | |
wireless_watcher | |
wireless_watcher_src_ci_humble: | |
name: Humble Clearpath Source | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ros-tooling/setup-ros@v0.7 | |
with: | |
required-ros-distributions: humble | |
- uses: ros-tooling/action-ros-ci@v0.3 | |
id: action_ros_ci_step | |
with: | |
target-ros2-distro: humble | |
package-name: | | |
wireless_watcher | |
wireless_watcher_osrf_industrial_ci_jazzy: | |
name: Jazzy OSRF Industrial | |
strategy: | |
matrix: | |
env: | |
- {ROS_REPO: testing, ROS_DISTRO: jazzy} | |
- {ROS_REPO: main, ROS_DISTRO: jazzy} | |
fail-fast: false | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: 'ros-industrial/industrial_ci@master' | |
env: ${{matrix.env}} | |
wireless_watcher_cpr_ci_jazzy: | |
name: Jazzy Clearpath Release | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ros-tooling/setup-ros@v0.7 | |
with: | |
required-ros-distributions: jazzy | |
- name: clearpath-package-server | |
run: | | |
sudo apt install wget | |
wget https://packages.clearpathrobotics.com/public.key -O - | sudo apt-key add - | |
sudo sh -c 'echo "deb https://packages.clearpathrobotics.com/stable/ubuntu $(lsb_release -cs) main" > /etc/apt/sources.list.d/clearpath-latest.list' | |
sudo apt-get update | |
- uses: ros-tooling/action-ros-ci@v0.3 | |
id: action_ros_ci_step | |
with: | |
target-ros2-distro: jazzy | |
package-name: | | |
wireless_watcher | |
wireless_watcher_src_ci_jazzy: | |
name: Jazzy Clearpath Source | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ros-tooling/setup-ros@v0.7 | |
with: | |
required-ros-distributions: jazzy | |
- uses: ros-tooling/action-ros-ci@v0.3 | |
id: action_ros_ci_step | |
with: | |
target-ros2-distro: jazzy | |
package-name: | | |
wireless_watcher |