-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Tomoya Fujita <Tomoya.Fujita@sony.com>
- Loading branch information
1 parent
cf355de
commit e5c6f41
Showing
1 changed file
with
48 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# This is workflow to build parameter server in ros docker images | ||
name: build | ||
|
||
on: | ||
push: | ||
branches: [ "master" ] | ||
pull_request: | ||
branches: [ "master" ] | ||
|
||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | ||
jobs: | ||
rolling-docker: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: ros:rolling | ||
steps: | ||
- name: test | ||
shell: bash | ||
run: | | ||
source /opt/ros/rolling/setup.bash | ||
ros2 topic list | ||
jobs: | ||
iron-docker: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: ros:iron | ||
steps: | ||
- name: test | ||
shell: bash | ||
run: | | ||
source /opt/ros/iron/setup.bash | ||
ros2 service list | ||
jobs: | ||
humble-docker: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: ros:humble | ||
steps: | ||
- name: test | ||
shell: bash | ||
run: | | ||
source /opt/ros/humble/setup.bash | ||
ros2 node list |