AP_HAL: fix ftoa_engine hang on infinities #36364
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: test scripts | |
| on: [push, pull_request, workflow_dispatch] | |
| concurrency: | |
| group: ci-${{github.workflow}}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: ubuntu-slim | |
| strategy: | |
| fail-fast: false # don't cancel if a job from the matrix fails | |
| matrix: | |
| config: [ | |
| astyle-cleanliness, | |
| check_autotest_options, | |
| logger_metadata, | |
| param_parse, | |
| param-file-validation, | |
| python-cleanliness, | |
| shellcheck, | |
| validate_board_list, | |
| ] | |
| steps: | |
| # git checkout the PR | |
| - uses: actions/checkout@v6 | |
| with: | |
| submodules: 'recursive' | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: 3.x | |
| cache: pip # caching pip dependencies | |
| pip-install: flake8 lxml pexpect | |
| - name: Install astyle | |
| if: matrix.config == 'astyle-cleanliness' | |
| shell: bash | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install --yes astyle | |
| - name: test ${{matrix.config}} | |
| env: | |
| CI_BUILD_TARGET: ${{matrix.config}} | |
| shell: bash | |
| run: | | |
| git config --global --add safe.directory ${GITHUB_WORKSPACE} | |
| Tools/scripts/build_ci.sh |