Skip to content

AP_Networking: add PPP software flow control #40332

AP_Networking: add PPP software flow control

AP_Networking: add PPP software flow control #40332

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
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