Skip to content

AP_HAL: fix ftoa_engine hang on infinities #36364

AP_HAL: fix ftoa_engine hang on infinities

AP_HAL: fix ftoa_engine hang on infinities #36364

Workflow file for this run

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