ardupilot/.github/workflows/test_scripts.yml
Peter Barker f2e34befe4 CI: add explicit param_parse CI_BUILD_TARGET options
currently any time you run this script it seems to do this step
2023-03-11 10:49:06 +11:00

31 lines
725 B
YAML

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-20.04
container: ardupilot/ardupilot-dev-base:latest
strategy:
fail-fast: false # don't cancel if a job from the matrix fails
matrix:
config: [
check_autotest_options,
param_parse,
]
steps:
# git checkout the PR
- uses: actions/checkout@v3
with:
submodules: 'recursive'
- name: test ${{matrix.config}}
env:
CI_BUILD_TARGET: ${{matrix.config}}
shell: bash
run: |
Tools/scripts/build_ci.sh