Merge pull request #14927 from paul-szczepanek-arm/master

add workflow for checking ble feature selection compilation
pull/14941/head
Martin Kojtal 2021-07-20 10:09:47 +02:00 committed by GitHub
commit 26889ca2f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,29 @@
name: run conditional BLE feature compilation
on:
workflow_dispatch:
pull_request:
paths:
- 'connectivity/FEATURE_BLE/**'
jobs:
run-conditional-feature-compilation-test:
name: Conditional BLE features compilation tested
runs-on: ubuntu-latest
container: mbedos/mbed-os-env:latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
path: mbed-os
- name: Build
run: |
git clone https://github.com/ARMmbed/mbed-os-example-ble.git
cd mbed-os-example-ble/BLE_SupportedFeatures
ln -s ../../mbed-os mbed-os
for f in ../resources/test_configs/*; do
echo "Configuration file ${f}: "
echo "-------------------------------------------------------------------------"
cat "${f}"
echo "-------------------------------------------------------------------------"
mbed compile -t GCC_ARM -m NRF52840_DK --app-config "${f}"
done