Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature check workflow #69

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .github/workflows/run_conditional_ble_feature_compilation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: run conditional BLE feature compilation
on:
workflow_dispatch:
schedule:
- cron: '0 1 * * 6'
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
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
2 changes: 1 addition & 1 deletion platform/include/platform/mbed_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
*
* @note 99 is default value for development version (master branch)
*/
#define MBED_MINOR_VERSION 12
#define MBED_MINOR_VERSION 13

/** MBED_PATCH_VERSION
* Mbed OS patch version
Expand Down