-
Notifications
You must be signed in to change notification settings - Fork 0
55 lines (47 loc) · 1.37 KB
/
build-ros2-ws-action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
name: ros2-ws-action
on:
workflow_dispatch:
pull_request:
push:
branches: [master]
jobs:
build-and-test:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
with:
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: Checkout Jitsuyo
uses: actions/[email protected]
with:
repository: ichiro-its/jitsuyo
path: jitsuyo
token: ${{ secrets.GH_TOKEN }}
- 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]