Fixed ci error #19
Workflow file for this run
This file contains hidden or 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: Continuous Integration (CI) | ||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- main | ||
workflow_dispatch: | ||
jobs: | ||
pre-commit: | ||
name: CI | ||
runs-on: ubuntu-24.04 | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
env: | ||
<<<<<<< HEAD | ||
- IMAGE: jazzy-ci | ||
ROS_DISTRO: jazzy | ||
======= | ||
- ROS_DISTRO: rolling | ||
>>>>>>> b4ac968 (Finished connection timeout implementation and renamed packages) | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
- name: Run ROS Industrial CI | ||
uses: ros-industrial/industrial_ci@master | ||
env: | ||
<<<<<<< HEAD | ||
<<<<<<< HEAD | ||
DOCKER_IMAGE: ghcr.io/robotic-decision-making-lab/ros2-template:${{ matrix.env.IMAGE }} | ||
======= | ||
DOCKER_IMAGE: ghcr.io/robotic-decision-making-lab/libwaterlinked:${{ matrix.env.IMAGE }} | ||
>>>>>>> cc84fbc (Finished initial implementation of driver and renamed to libwaterlinked) | ||
CXXFLAGS: >- | ||
-Wall -Wextra -Wpedantic -Wwrite-strings -Wunreachable-code -Wpointer-arith -Wredundant-decls | ||
CC: ${{ env.CLANG_TIDY && 'clang' }} | ||
CXX: ${{ env.CLANG_TIDY && 'clang++' }} | ||
======= | ||
ROS_DISTRO: ${{ matrix.env.ROS_DISTRO }} | ||
CXXFLAGS: -Wall -Wextra -Wpedantic | ||
CLANG_TIDY: true | ||
UPSTREAM_WORKSPACE: ros2.repos | ||
AFTER_SETUP_UPSTREAM_WORKSPACE: vcs pull $BASEDIR/upstream_ws/src | ||
AFTER_SETUP_DOWNSTREAM_WORKSPACE: vcs pull $BASEDIR/downstream_ws/src | ||
<<<<<<< HEAD | ||
>>>>>>> b4ac968 (Finished connection timeout implementation and renamed packages) | ||
======= | ||
ROSDEP_SKIP_KEYS: nlohmann_json | ||
>>>>>>> 8cedc34 (Fix for ci rosdeps) |