fix isnan on _msvc_LANG>= 201103L #104
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
# This config uses industrial_ci (https://github.com/ros-industrial/industrial_ci.git). | |
# For troubleshooting, see readme (https://github.com/ros-industrial/industrial_ci/blob/master/README.rst) | |
name: ROS-CI | |
# This determines when this workflow is run | |
on: [push, pull_request] # on all pushes and PRs | |
jobs: | |
CI: | |
strategy: | |
matrix: | |
env: | |
- {ROS_DISTRO: noetic, PRERELEASE: true} | |
- {ROS_DISTRO: iron, PRERELEASE: true} | |
#- {ROS_DISTRO: rolling} # 2024-03-12 temporarily deactivate until transitin to Ubuntu Noble is complete | |
env: | |
BUILDER: colcon | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: 'ros-industrial/industrial_ci@master' | |
env: ${{ matrix.env }} |