-
Notifications
You must be signed in to change notification settings - Fork 9
55 lines (48 loc) · 1.52 KB
/
run_pipeline.yaml
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: Turtle Nest CI pipeline
on: [pull_request]
jobs:
build-humble:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build Docker Image
run: docker compose -f docker/docker-compose.yaml build
test-humble:
runs-on: ubuntu-latest
needs: build-humble
steps:
- uses: actions/checkout@v4
- name: Test Humble
run: docker compose -f docker/docker-compose.yaml run --build test
build-test-iron:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Test Iron
run: docker compose -f docker/docker-compose.yaml run --build test-iron
build-test-jazzy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Test Jazzy
run: docker compose -f docker/docker-compose.yaml run --build test-jazzy
build-test-rolling:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Test Rolling
run: docker compose -f docker/docker-compose.yaml run --build test-rolling
colcon-test-rolling:
runs-on: ubuntu-latest
needs: build-test-rolling
steps:
- uses: actions/checkout@v4
- name: Run Colcon Test Rolling
run: docker compose -f docker/docker-compose.yaml run --build colcon-test-rolling
colcon-test-humble:
runs-on: ubuntu-latest
needs: build-humble
steps:
- uses: actions/checkout@v4
- name: Run Colcon Test Humble
run: docker compose -f docker/docker-compose.yaml run --build colcon-test-humble