fix: add missing sensor example config #39
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: CI | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- noetic-devel | |
- noetic-master | |
permissions: | |
contents: read | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
default: | |
strategy: | |
fail-fast: false | |
matrix: | |
env: | |
- IMAGE: noetic-ci | |
CCOV: true | |
BUILDER: catkin_tools_devel | |
MUJOCO_VERSION: 2.3.6 | |
# Skip 2.3.7 compability tests for now | |
# - IMAGE: noetic-ci | |
# CCOV: true | |
# BUILDER: catkin_tools_devel | |
# MUJOCO_VERSION: 2.3.7 | |
# There is no master at the time | |
# - IMAGE: master-ci | |
# MUJOCO_VERSION: 2.3.6 | |
# CATKIN_LINT: true | |
env: | |
DOCKER_RUN_OPTS: -e MUJOCO_DIR=/root/mujoco/${{ matrix.env.MUJOCO_VERSION }} | |
# CXXFLAGS: -Wall -Wextra -Wwrite-strings -Wunreachable-code -Wpointer-arith -Wredundant-decls | |
CXXFLAGS: -Wwrite-strings -Wunreachable-code -Wpointer-arith -Wredundant-decls | |
CLANG_TIDY_ARGS: --fix --fix-errors --format-style=file | |
DOCKER_IMAGE: docker.io/davidpl1/mujoco_ros:${{ matrix.env.IMAGE }} | |
UPSTREAM_WORKSPACE: .github/workflows/upstream.rosinstall | |
# DOWNSTREAM_WORKSPACE: .github/workflows/downstream.rosinstall | |
# Pull any updates to the upstream workspace | |
AFTER_SETUP_UPSTREAM_WORKSPACE: vcs pull $BASEDIR/upstream_ws/src | |
AFTER_SETUP_DOWNSTREAM_WORKSPACE: vcs pull $BASEDIR/downstream_ws/src | |
# Clear ccache stats before and log the stats after the build | |
AFTER_SETUP_CCACHE: ccache --zero-stats --max-size=10.0G | |
AFTER_BUILD_TARGET_WORKSPACE: ccache --show-stats | |
AFTER_BUILD_DOWNSTREAM_WORKSPACE: ccache --show-stats | |
# Compile CCOV with Debug. Enable -Werror. | |
TARGET_CMAKE_ARGS: > | |
-DCMAKE_BUILD_TYPE=${{ matrix.env.CCOV && 'Debug' || 'Release'}} | |
-DCMAKE_CXX_FLAGS="-Werror $CXXFLAGS${{ matrix.env.CCOV && ' --coverage -O2 -fno-omit-frame-pointer'}}" | |
UPSTREAM_CMAKE_ARGS: "-DCMAKE_CXX_FLAGS=''" | |
DOWNSTREAM_CMAKE_ARGS: -DCMAKE_CXX_FLAGS="-Wall -Wextra" | |
CCACHE_DIR: ${{ github.workspace }}/.ccache | |
BASEDIR: ${{ github.workspace }}/.work | |
CLANG_TIDY_BASE_REF: ${{ github.event_name != 'workflow_dispatch' && (github.base_ref || github.ref) || '' }} | |
BEFORE_CLANG_TIDY_CHECKS: | | |
# Show list of applied checks | |
(cd $TARGET_REPO_PATH; clang-tidy --list-checks) | |
BUILDER: ${{ matrix.env.BUILDER || 'catkin_tools' }} | |
CC: ${{ matrix.env.CLANG_TIDY && 'clang' }} | |
CXX: ${{ matrix.env.CLANG_TIDY && 'clang++' }} | |
name: "${{ matrix.env.IMAGE }} mj-${{ matrix.env.MUJOCO_VERSION }}${{ matrix.env.CATKIN_LINT && ' + catkin_lint' || ''}}${{ matrix.env.CCOV && ' + ccov' || ''}}${{ matrix.env.IKFAST_TEST && ' + ikfast' || ''}}${{ matrix.env.CLANG_TIDY && (github.event_name != 'workflow_dispatch' && ' + clang-tidy (delta)' || ' + clang-tidy (all)') || '' }}" | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: "Free up disk space" | |
if: matrix.env.CCOV | |
run: | | |
sudo apt-get -qq purge build-essential "ghc*" | |
sudo apt-get clean | |
# cleanup docker images not used by us | |
docker system prune -af | |
# shift ccache folder to /mnt on a separate disk | |
sudo mkdir -p /mnt/ccache | |
sudo mkdir ${{ env.CCACHE_DIR }} | |
sudo mount --bind ${{ env.CCACHE_DIR }} /mnt/ccache | |
# free up a lot of stuff from /usr/local | |
sudo rm -rf /usr/local | |
df -h | |
- uses: actions/checkout@v3 | |
- name: Cache upstream workspace | |
uses: rhaschke/cache@main | |
with: | |
path: ${{ env.BASEDIR }}/upstream_ws | |
key: ${{ env.CACHE_PREFIX }}-${{ github.run_id }} | |
restore-keys: ${{ env.CACHE_PREFIX }} | |
env: | |
GHA_CACHE_SAVE: always | |
CACHE_PREFIX: upstream_ws-${{ matrix.env.IMAGE }}-${{ hashFiles('.github/workflows/upstream.rosinstall', '.github/workflows/ci.yaml') }} | |
- name: Cache downstream workspace | |
uses: rhaschke/cache@main | |
with: | |
path: ${{ env.BASEDIR }}/downstream_ws | |
key: ${{ env.CACHE_PREFIX }}-${{ github.run_id }} | |
restore-keys: ${{ env.CACHE_PREFIX }} | |
env: | |
GHA_CACHE_SAVE: always | |
CACHE_PREFIX: downstream_ws-${{ matrix.env.IMAGE }}-${{ hashFiles('.github/workflows/downstream.rosinstall', '.github/workflows/ci.yaml') }} | |
# The target directory cache doesn't include the source directory because | |
# that comes from the checkout. See "prepare target_ws for cache" task below | |
- name: Cache target workspace | |
if: "!matrix.env.CCOV" | |
uses: rhaschke/cache@main | |
with: | |
path: ${{ env.BASEDIR }}/target_ws | |
key: ${{ env.CACHE_PREFIX }}-${{ github.run_id }} | |
restore-keys: ${{ env.CACHE_PREFIX }} | |
env: | |
GHA_CACHE_SAVE: always | |
CACHE_PREFIX: target_ws${{ matrix.env.CCOV && '-ccov' || '' }}-${{ matrix.env.IMAGE }}-${{ hashFiles('**/CMakeLists.txt', '**/package.xml', '.github/workflows/ci.yaml') }} | |
- name: Cache ccache | |
uses: rhaschke/cache@main | |
with: | |
path: ${{ env.CCACHE_DIR }} | |
key: ${{ env.CACHE_PREFIX }}-${{ github.sha }}-${{ github.run_id }} | |
restore-keys: | | |
${{ env.CACHE_PREFIX }}-${{ github.sha }} | |
${{ env.CACHE_PREFIX }} | |
env: | |
GHA_CACHE_SAVE: always | |
CACHE_PREFIX: ccache-${{ matrix.env.IMAGE }}${{ matrix.env.CCOV && '-ccov' || '' }} | |
- id: ici | |
name: Run industrial_ci | |
uses: ros-industrial/industrial_ci@master | |
env: ${{ matrix.env }} | |
- name: Upload test artifacts (on failure) | |
uses: actions/upload-artifact@v3 | |
if: failure() && (steps.ici.outputs.run_target_test || steps.ici.outputs.target_test_results) | |
with: | |
name: test-results-${{ matrix.env.IMAGE }} | |
path: ${{ env.BASEDIR }}/target_ws/**/test_results/**/*.xml | |
- name: Generate codecov report | |
uses: rhaschke/lcov-action@main | |
if: always() && matrix.env.CCOV && steps.ici.outputs.target_test_results == '0' | |
with: | |
docker: $DOCKER_IMAGE | |
workdir: ${{ env.BASEDIR }}/target_ws | |
ignore: '"*/target_ws/build/*" "*/target_ws/install/*" "*/test/*"' | |
- name: Upload codecov report | |
uses: codecov/codecov-action@v3 | |
if: always() && matrix.env.CCOV && steps.ici.outputs.target_test_results == '0' | |
with: | |
files: ${{ env.BASEDIR }}/target_ws/coverage.info | |
- name: Upload clang-tidy changes | |
uses: rhaschke/upload-git-patch-action@main | |
if: always() && matrix.env.CLANG_TIDY | |
with: | |
name: clang-tidy | |
path: ${{ env.BASEDIR }}/target_ws/src/$(basename $(pwd)) | |
- name: Prepare target_ws for cache | |
if: always() && !matrix.env.CCOV | |
run: | | |
du -sh ${{ env.BASEDIR }}/target_ws | |
sudo find ${{ env.BASEDIR }}/target_ws -wholename '*/test_results/*' -delete | |
sudo rm -rf ${{ env.BASEDIR }}/target_ws/src ${{ env.BASEDIR }}/target_ws/logs | |
du -sh ${{ env.BASEDIR }}/target_ws |