Merge pull request #12629 from evedon/ed-rtos-api

Add "rtos-api" to bare metal
pull/12708/head
Martin Kojtal 2020-03-26 18:21:05 +01:00 committed by GitHub
commit cb131c39b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 3 deletions

View File

@ -253,7 +253,7 @@ matrix:
# Check that example compiles without rtos # Check that example compiles without rtos
- sed -n '/``` cpp/,/```/{/```$/Q;/```/d;p;}' ${EVENTS}/README.md > main.cpp - sed -n '/``` cpp/,/```/{/```$/Q;/```/d;p;}' ${EVENTS}/README.md > main.cpp
- | - |
rm -r rtos drivers/source/usb features/cellular features/netsocket features/nanostack \ rm -r rtos/source/TARGET_CORTEX drivers/source/usb features/cellular features/netsocket features/nanostack \
features/lwipstack features/frameworks/greentea-client \ features/lwipstack features/frameworks/greentea-client \
features/frameworks/utest features/frameworks/unity components BUILD features/frameworks/utest features/frameworks/unity components BUILD
- python tools/make.py -t GCC_ARM -m DISCO_F401VC --source=. --build=BUILD/DISCO_F401VC/GCC_ARM -j0 - python tools/make.py -t GCC_ARM -m DISCO_F401VC --source=. --build=BUILD/DISCO_F401VC/GCC_ARM -j0

View File

@ -1,7 +1,6 @@
{ {
"requires": [ "requires": [
"bare-metal", "bare-metal",
"rtos-api",
"greentea-client", "greentea-client",
"utest", "utest",
"unity", "unity",

View File

@ -1,4 +1,4 @@
{ {
"name": "bare-metal", "name": "bare-metal",
"requires": ["platform", "drivers"] "requires": ["platform", "drivers", "rtos-api"]
} }