RateLimiter: Don't update parameters before input checks #437 #323
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: Rolling - Check Compatibility | |
| # author: Christoph Froehlich <christoph.froehlich@ait.ac.at> | |
| # description: 'Build & test the rolling version on earlier distros.' | |
| on: | |
| workflow_dispatch: | |
| pull_request: &event | |
| branches: | |
| - master | |
| paths: | |
| - '**.hpp' | |
| - '**.h' | |
| - '**.cpp' | |
| - '**.py' | |
| - '**.yaml' | |
| - '.github/workflows/rolling-compatibility-build.yml' | |
| - '**/package.xml' | |
| - '**/CMakeLists.txt' | |
| - 'control_toolbox.rolling.repos' | |
| - '**.xml' | |
| push: *event | |
| concurrency: | |
| # cancel previous runs of the same workflow, except for pushes on given branches branch | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ !startsWith(github.ref, 'refs/heads') }} | |
| jobs: | |
| build: | |
| uses: ros-controls/ros2_control_ci/.github/workflows/reusable-industrial-ci-with-cache.yml@master | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| ROS_DISTRO: [humble, jazzy, kilted] | |
| with: | |
| ros_distro: ${{ matrix.ROS_DISTRO }} | |
| ros_repo: testing | |
| upstream_workspace: control_toolbox.rolling.repos | |
| ref_for_scheduled_build: master |