feat(start_planner): prevent start planner execution in the middle of the road #1812
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build-and-test-differential | |
on: | |
pull_request: | |
jobs: | |
build-and-test-differential: | |
runs-on: ubuntu-latest | |
container: ${{ matrix.container }} | |
strategy: | |
fail-fast: false | |
matrix: | |
rosdistro: | |
- humble | |
include: | |
- rosdistro: humble | |
container: ros:humble | |
build-depends-repos: build_depends.repos | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Remove exec_depend | |
uses: autowarefoundation/autoware-github-actions/remove-exec-depend@v1 | |
- name: Get modified packages | |
id: get-modified-packages | |
uses: autowarefoundation/autoware-github-actions/get-modified-packages@v1 | |
- name: Build | |
if: ${{ steps.get-modified-packages.outputs.modified-packages != '' }} | |
uses: autowarefoundation/autoware-github-actions/colcon-build@v1 | |
with: | |
rosdistro: ${{ matrix.rosdistro }} | |
target-packages: ${{ steps.get-modified-packages.outputs.modified-packages }} | |
build-depends-repos: ${{ matrix.build-depends-repos }} | |
- name: Test | |
id: test | |
if: ${{ steps.get-modified-packages.outputs.modified-packages != '' }} | |
uses: autowarefoundation/autoware-github-actions/colcon-test@v1 | |
with: | |
rosdistro: ${{ matrix.rosdistro }} | |
target-packages: ${{ steps.get-modified-packages.outputs.modified-packages }} | |
build-depends-repos: ${{ matrix.build-depends-repos }} | |
- name: Upload coverage to CodeCov | |
if: ${{ steps.test.outputs.coverage-report-files != '' }} | |
uses: codecov/codecov-action@v3 | |
with: | |
files: ${{ steps.test.outputs.coverage-report-files }} | |
fail_ci_if_error: false | |
verbose: true | |
flags: differential | |
clang-tidy-differential: | |
runs-on: ubuntu-latest | |
container: ros:humble | |
needs: build-and-test-differential | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Remove exec_depend | |
uses: autowarefoundation/autoware-github-actions/remove-exec-depend@v1 | |
- name: Get modified packages | |
id: get-modified-packages | |
uses: autowarefoundation/autoware-github-actions/get-modified-packages@v1 | |
- name: Get modified files | |
id: get-modified-files | |
uses: tj-actions/changed-files@v35 | |
with: | |
files: | | |
**/*.cpp | |
**/*.hpp | |
- name: Run clang-tidy | |
if: ${{ steps.get-modified-files.outputs.all_changed_files != '' }} | |
uses: autowarefoundation/autoware-github-actions/clang-tidy@v1 | |
with: | |
rosdistro: humble | |
target-packages: ${{ steps.get-modified-packages.outputs.modified-packages }} | |
target-files: ${{ steps.get-modified-files.outputs.all_changed_files }} | |
clang-tidy-config-url: https://raw.githubusercontent.com/autowarefoundation/autoware/main/.clang-tidy | |
build-depends-repos: build_depends.repos |