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

add ROS2 iron build #14

Merged
merged 4 commits into from
Oct 3, 2023
Merged
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
6 changes: 3 additions & 3 deletions .github/workflows/humble.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,21 @@ on:
branches: [ "main" ]

jobs:
build_docker:
build_humble:
runs-on: ubuntu-latest
container:
image: ubuntu:jammy
steps:
- name: cancle preivious run
uses: styfle/[email protected]
- name: setup ROS2
uses: ros-tooling/setup-ros@v0.5
uses: ros-tooling/setup-ros@v0.7
with:
required-ros-distributions: humble
- name: Install dependencies
run: pip install black
- name: ROS2 build and test
uses: ros-tooling/action-ros-ci@v0.2
uses: ros-tooling/action-ros-ci@v0.3
with:
import-token: ${{ secrets.GITHUB_TOKEN }}
target-ros2-distro: humble
27 changes: 27 additions & 0 deletions .github/workflows/iron.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: iron build

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build_iron:
runs-on: ubuntu-latest
container:
image: ubuntu:jammy
steps:
- name: cancle preivious run
uses: styfle/[email protected]
- name: setup ROS2
uses: ros-tooling/[email protected]
with:
required-ros-distributions: iron
- name: Install dependencies
run: pip install black
- name: ROS2 build and test
uses: ros-tooling/[email protected]
with:
import-token: ${{ secrets.GITHUB_TOKEN }}
target-ros2-distro: iron
6 changes: 3 additions & 3 deletions .github/workflows/rolling.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,21 @@ on:
branches: [ "main" ]

jobs:
build_docker:
build_rolling:
runs-on: ubuntu-latest
container:
image: ubuntu:jammy
steps:
- name: cancle preivious run
uses: styfle/[email protected]
- name: setup ROS2
uses: ros-tooling/setup-ros@v0.5
uses: ros-tooling/setup-ros@v0.7
with:
required-ros-distributions: rolling
- name: Install dependencies
run: pip install black
- name: ROS2 build and test
uses: ros-tooling/action-ros-ci@v0.2
uses: ros-tooling/action-ros-ci@v0.3
with:
import-token: ${{ secrets.GITHUB_TOKEN }}
target-ros2-distro: rolling
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# freeflyer2
![humble build](https://github.com/StanfordASL/freeflyer2/actions/workflows/humble.yml/badge.svg?event=push)
![iron build](https://github.com/StanfordASL/freeflyer2/actions/workflows/iron.yml/badge.svg?event=push)
![rolling build](https://github.com/StanfordASL/freeflyer2/actions/workflows/rolling.yml/badge.svg?event=push)

ASL FreeFlyer software stack with ROS2. See build status for support on ROS2 distrbutions.
Expand Down