Skip to content

Commit c4adf9a

Browse files
author
M. Fatih Cırıt
committed
ci(build-and-test): extract the action and simplify
Signed-off-by: M. Fatih Cırıt <mfc@leodrive.ai>
1 parent ce1a86a commit c4adf9a

6 files changed

+148
-122
lines changed
+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
name: "Build and Test Action"
2+
description: "Reusable action for building and testing the repository"
3+
inputs:
4+
container:
5+
description: "Container to use for the build"
6+
required: true
7+
container-suffix:
8+
description: "Suffix for the container"
9+
required: true
10+
build-depends-repos:
11+
description: "Repositories for build dependencies"
12+
required: true
13+
rosdistro:
14+
description: "ROS distribution"
15+
required: true
16+
17+
runs:
18+
using: "composite"
19+
steps:
20+
- name: Check out repository
21+
uses: actions/checkout@v4
22+
23+
- name: Show disk space before the tasks
24+
run: df -h
25+
26+
- name: Remove exec_depend
27+
uses: autowarefoundation/autoware-github-actions/remove-exec-depend@v1
28+
29+
- name: Get self packages
30+
id: get-self-packages
31+
uses: autowarefoundation/autoware-github-actions/get-self-packages@v1
32+
33+
- name: Build
34+
if: ${{ steps.get-self-packages.outputs.self-packages != '' }}
35+
uses: autowarefoundation/autoware-github-actions/colcon-build@v1
36+
with:
37+
rosdistro: ${{ inputs.rosdistro }}
38+
target-packages: ${{ steps.get-self-packages.outputs.self-packages }}
39+
build-depends-repos: ${{ inputs.build-depends-repos }}
40+
41+
- name: Test
42+
if: ${{ steps.get-self-packages.outputs.self-packages != '' }}
43+
id: test
44+
uses: autowarefoundation/autoware-github-actions/colcon-test@v1
45+
with:
46+
rosdistro: ${{ inputs.rosdistro }}
47+
target-packages: ${{ steps.get-self-packages.outputs.self-packages }}
48+
build-depends-repos: ${{ inputs.build-depends-repos }}
49+
50+
- name: Upload coverage to CodeCov
51+
if: ${{ steps.test.outputs.coverage-report-files != '' }}
52+
uses: codecov/codecov-action@v3
53+
with:
54+
files: ${{ steps.test.outputs.coverage-report-files }}
55+
fail_ci_if_error: false
56+
verbose: true
57+
flags: total
58+
59+
- name: Show disk space after the tasks
60+
run: df -h

.github/workflows/build-and-test-arm64.yaml

-55
This file was deleted.
+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: build-and-test-cuda
2+
3+
on:
4+
push:
5+
6+
jobs:
7+
build-and-test-cuda:
8+
if: ${{ github.ref_name == github.event.repository.default_branch }}
9+
runs-on: [ self-hosted, linux, ARM64 ]
10+
strategy:
11+
fail-fast: false
12+
matrix:
13+
rosdistro:
14+
- humble
15+
container-suffix:
16+
- -cuda
17+
include:
18+
- rosdistro: humble
19+
container: ghcr.io/autowarefoundation/autoware:latest-prebuilt
20+
build-depends-repos: build_depends.repos
21+
steps:
22+
- name: Build and Test
23+
uses: ./.github/actions/build-and-test-action
24+
with:
25+
container: ${{ matrix.container }}
26+
container-suffix: ${{ matrix.container-suffix }}
27+
build-depends-repos: ${{ matrix.build-depends-repos }}
28+
rosdistro: ${{ matrix.rosdistro }}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: build-and-test-daily-arm64
2+
3+
on:
4+
schedule:
5+
- cron: 0 0 * * *
6+
workflow_dispatch:
7+
8+
jobs:
9+
build-and-test-daily-arm64:
10+
runs-on: [ self-hosted, linux, ARM64 ]
11+
strategy:
12+
fail-fast: false
13+
matrix:
14+
rosdistro:
15+
- humble
16+
container-suffix:
17+
- ""
18+
- -cuda
19+
include:
20+
- rosdistro: humble
21+
container: ghcr.io/autowarefoundation/autoware:latest-prebuilt
22+
build-depends-repos: build_depends.repos
23+
steps:
24+
- name: Build and Test
25+
uses: ./.github/actions/build-and-test-action
26+
with:
27+
container: ${{ matrix.container }}
28+
container-suffix: ${{ matrix.container-suffix }}
29+
build-depends-repos: ${{ matrix.build-depends-repos }}
30+
rosdistro: ${{ matrix.rosdistro }}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: build-and-test-daily
2+
3+
on:
4+
schedule:
5+
- cron: 0 0 * * *
6+
workflow_dispatch:
7+
8+
jobs:
9+
build-and-test-daily:
10+
runs-on: [ self-hosted, linux, X64 ]
11+
strategy:
12+
fail-fast: false
13+
matrix:
14+
rosdistro:
15+
- humble
16+
container-suffix:
17+
- ""
18+
- -cuda
19+
include:
20+
- rosdistro: humble
21+
container: ghcr.io/autowarefoundation/autoware:latest-prebuilt
22+
build-depends-repos: build_depends.repos
23+
steps:
24+
- name: Build and Test
25+
uses: ./.github/actions/build-and-test-action
26+
with:
27+
container: ${{ matrix.container }}
28+
container-suffix: ${{ matrix.container-suffix }}
29+
build-depends-repos: ${{ matrix.build-depends-repos }}
30+
rosdistro: ${{ matrix.rosdistro }}

.github/workflows/build-and-test.yaml

-67
This file was deleted.

0 commit comments

Comments
 (0)