AP_Networking: add PPP software flow control #40332
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 | |
| permissions: | |
| contents: read | |
| 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@v7 | |
| with: | |
| submodules: false | |
| persist-credentials: false | |
| - name: checkout waf submodule | |
| run: git submodule update --init --recursive --depth 1 modules/waf | |
| - name: install pip dependencies | |
| shell: bash | |
| run: | | |
| python3 -m 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 |