Skip to content

Commit

Permalink
ci: add test for PX4_EXTRA_NUTTX_CONFIG
Browse files Browse the repository at this point in the history
  • Loading branch information
bkueng authored and dagar committed Nov 23, 2023
1 parent a9c4e5a commit 19f08b4
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/nuttx_env_config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Nuttx Target with extra env config

on:
push:
branches:
- 'main'
pull_request:
branches:
- '*'

jobs:
build:
runs-on: ubuntu-latest
container: px4io/px4-dev-nuttx-focal:2022-08-12
strategy:
matrix:
config: [
px4_fmu-v5,
]
steps:
- uses: actions/checkout@v1
with:
token: ${{secrets.ACCESS_TOKEN}}

- name: make ${{matrix.config}}
env:
PX4_EXTRA_NUTTX_CONFIG: "CONFIG_NSH_LOGIN_PASSWORD=\"test\";CONFIG_NSH_CONSOLE_LOGIN=y"
run: |
echo "PX4_EXTRA_NUTTX_CONFIG: $PX4_EXTRA_NUTTX_CONFIG"
make ${{matrix.config}} nuttx_context
# Check that the config option is set
grep CONFIG_NSH_LOGIN_PASSWORD build/${{matrix.config}}_default/NuttX/nuttx/.config

0 comments on commit 19f08b4

Please sign in to comment.