-
Notifications
You must be signed in to change notification settings - Fork 4
59 lines (53 loc) · 1.38 KB
/
build_and_test.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
56
57
58
59
name: Build and Test (humble)
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
CI:
runs-on: ubuntu-latest
steps:
- name: Prepare
run: |
mkdir -p ${{github.workspace}}/src
- uses: actions/checkout@v4
with:
path: src/grip
- name: Build Docker Image
uses: docker/build-push-action@v5
with:
tags: grip:humble
file: Dockerfile.ci
push: false
- name: Build
uses: eaa3/docker-run-action@v3
with:
image: grip:humble
options: -v ${{github.workspace}}/:/ros/
run: |
cd /ros
. /opt/ros/humble/setup.sh
colcon build
- name: Test
uses: eaa3/docker-run-action@v3
with:
image: grip:humble
options: -v ${{github.workspace}}/:/ros/
run: |
cd /ros
. /opt/ros/humble/setup.sh
. install/setup.sh
colcon test
colcon test-result
# - name: Upload Tests to Artifacts
# uses: actions/upload-artifact@v3
# if: always()
# with:
# name: test-results
# path: build/*/*.xml
# - name: Publish Unit Test Results
# uses: EnricoMi/[email protected]
# if: always()
# with:
# files: build/*/*.xml