Skip to content

[humble-devel] Fix bug for docker build #28

[humble-devel] Fix bug for docker build

[humble-devel] Fix bug for docker build #28

Workflow file for this run

name: ROS2-humble Industrial CI
on:
pull_request:
jobs:
clang_format_check:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
- name: run industrial_ci
uses: 'ros-industrial/industrial_ci@master'
env:
ROS_DISTRO: humble
CLANG_FORMAT_CHECK: file
CLANG_FORMAT_VERSION: "14"
clang_tidy_check:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
- name: run industrial_ci
uses: 'ros-industrial/industrial_ci@master'
env:
ROS_DISTRO: humble
BEFORE_BUILD_TARGET_WORKSPACE: 'apt update -q && python3 -m pip install -q -r requirements.txt'
CLANG_TIDY_ARGS: '--extra-arg=-std=c++17'
CLANG_TIDY: pedantic
black_check:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
- name: run industrial_ci
uses: 'ros-industrial/industrial_ci@master'
env:
ROS_DISTRO: humble
BLACK_CHECK: true
pylint_check:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
- name: run industrial_ci
uses: 'ros-industrial/industrial_ci@master'
env:
ROS_DISTRO: humble
BEFORE_BUILD_TARGET_WORKSPACE: 'apt update -q && python3 -m pip install -q -r requirements.txt'
PYLINT_ARGS: '--errors-only'
PYLINT_CHECK: true
build_check:
runs-on: ubuntu-latest
continue-on-error: true
strategy:
fail-fast: false
matrix:
env:
- ROS_DISTRO: humble
ROS_REPO: main
BEFORE_BUILD_TARGET_WORKSPACE: 'apt update -q && python3 -m pip install -q -r requirements.txt'
IMMEDIATE_TEST_OUTPUT: true
- ROS_DISTRO: humble
ROS_REPO: testing
BEFORE_BUILD_TARGET_WORKSPACE: 'apt update -q && python3 -m pip install -q -r requirements.txt'
IMMEDIATE_TEST_OUTPUT: true
steps:
- name: checkout
uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
- name: run industrial_ci
uses: 'ros-industrial/industrial_ci@master'
env: ${{matrix.env}}