Add messages of compiler version message for debug #357
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: industrial_ci | |
| on: | |
| push: | |
| paths-ignore: | |
| - '**.md' | |
| pull_request: | |
| paths-ignore: | |
| - '**.md' | |
| schedule: | |
| - cron: "0 2 * * 0" # Weekly on Sundays at 02:00 | |
| jobs: | |
| industrial_ci: | |
| strategy: | |
| matrix: | |
| ROS_DISTRO: [jazzy] | |
| ROS_REPO: [ros] | |
| AFTER_SETUP_TARGET_WORKSPACE: [apt update && apt install -y git] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: "ros-industrial/industrial_ci@master" | |
| env: | |
| ROS_DISTRO: ${{matrix.ROS_DISTRO}} | |
| ROS_REPO: ${{matrix.ROS_REPO}} | |
| AFTER_SETUP_TARGET_WORKSPACE: ${{matrix.AFTER_SETUP_TARGET_WORKSPACE}} |