Skip to content

Add ci control to mbed_app.json #91

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

Merged
merged 1 commit into from
Jan 20, 2020
Merged
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
8 changes: 7 additions & 1 deletion mbed_app.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@
"mbed-cloud-client.update-storage" : "ARM_UCP_FLASHIAP",
"storage_tdb_internal.internal_base_address": "(512*1024)",
"storage_tdb_internal.internal_size" : "(32*1024)",
"storage.storage_type" : "TDB_INTERNAL"
"storage.storage_type" : "TDB_INTERNAL",
"run-ci" : 2
},
"K66F": {
"target.macros_add" : ["MBEDTLS_USER_CONFIG_FILE=\"mbedTLSConfig_mbedOS.h\""],
Expand Down Expand Up @@ -324,6 +325,11 @@
"help" : "Helper macro to enable calculation of rom regions. target.header_offset and target.app_offset still needs to be calculated manually, though.",
"value" : "(32*1024)",
"macro_name": "MBED_BOOTLOADER_SIZE"
},
"run-ci": {
"help" : "Configuration item to control the level of CI verification. 0 = ignored, 1 = build-only, 2 = build + E2E tests",
"accepted_values": [0, 1, 2],
"value" : 1
}
}
}