Skip to content

Commit

Permalink
feat: add new workflows with ros2-ws-action
Browse files Browse the repository at this point in the history
  • Loading branch information
marfanr committed Feb 26, 2024
1 parent 8db1f2c commit 45b7562
Showing 1 changed file with 63 additions and 0 deletions.
63 changes: 63 additions & 0 deletions .github/workflows/build-ros2-ws-action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
name: ros2-ws-action
on:
workflow_dispatch:
pull_request:
push:
branches: [master, feature/fix-github-workflows]
workflow_run:
workflows: [Build and Test Nightly]
types: [requested, completed, in_progress]
branches: [feature/fix-github-workflows]
jobs:
build-and-test:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
with:
path: aruku
ref: feature/fix-using-grpc

- name: Checkout Kansei
uses: actions/[email protected]
with:
repository: ichiro-its/kansei
path: kansei

- name: Checkout Kansei Interfaces
uses: actions/[email protected]
with:
repository: ichiro-its/kansei_interfaces
path: kansei_interfaces

- name: Checkout Keisan
uses: actions/[email protected]
with:
repository: ichiro-its/keisan
path: keisan

- name: Checkout tachimawari
uses: actions/[email protected]
with:
repository: ichiro-its/tachimawari
path: tachimawari

- name: Checkout tachimawari interfaces
uses: actions/[email protected]
with:
repository: ichiro-its/tachimawari_interfaces
path: tachimawari_interfaces

- name: Setup cmake
run: |
sudo apt install -y build-essential autoconf libtool pkg-config cmake
- name: Setup workspace
uses: ichiro-its/ros2-ws-action/[email protected]

- name: Build workspace
uses: ichiro-its/ros2-ws-action/[email protected]

- name: Test workspace
uses: ichiro-its/ros2-ws-action/[email protected]

0 comments on commit 45b7562

Please sign in to comment.