-
Notifications
You must be signed in to change notification settings - Fork 3k
TEST: add atecc608a example to compilation test #11475
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,9 +44,9 @@ | |
"targets" : ["K66F", "NUCLEO_F429ZI"], | ||
"toolchains" : ["GCC_ARM", "ARM"], | ||
"exporters": [], | ||
"compile" : false, | ||
"export": false, | ||
"test" : false, | ||
"compile" : true, | ||
"export": true, | ||
"test" : true, | ||
"baud_rate": 9600, | ||
"compare_log": [ | ||
"mbed-os-example-tls/tests/benchmark.log", | ||
|
@@ -74,8 +74,8 @@ | |
"targets" : ["NRF51_DK", "NRF52_DK", "K66F", "NUCLEO_F401RE"], | ||
"toolchains" : [], | ||
"exporters": [], | ||
"compile" : false, | ||
"export": false, | ||
"compile" : true, | ||
"export": true, | ||
"test" : false, | ||
"auto-update" : true | ||
}, | ||
|
@@ -351,9 +351,9 @@ | |
"targets" : ["K64F"], | ||
"toolchains" : [], | ||
"exporters": [], | ||
"compile" : false, | ||
"export": false, | ||
"test" : false, | ||
"compile" : true, | ||
"export": true, | ||
"test" : true, | ||
"baud_rate": 9600, | ||
"compare_log": ["mbed-os-example-mbed-crypto/tests/getting-started.log"], | ||
"auto-update" : true | ||
|
@@ -370,8 +370,8 @@ | |
"targets" : ["NUCLEO_F401RE", "DISCO_L475VG_IOT01A"], | ||
"toolchains" : [], | ||
"exporters": [], | ||
"compile" : false, | ||
"export": false, | ||
"compile" : true, | ||
"export": true, | ||
"test" : false, | ||
"auto-update" : true | ||
}, | ||
|
@@ -460,6 +460,22 @@ | |
"baud_rate": 9600, | ||
"compare_log": ["mbed-os-example-attestation/tests/attestation.log"], | ||
"auto-update" : true | ||
}, | ||
{ | ||
"name": "mbed-os-example-atecc608a", | ||
"github": "https://github.com/ARMmbed/mbed-os-example-atecc608a", | ||
"sub-repo-example": true, | ||
"subs": ["atecc608a"], | ||
"features" : [], | ||
"targets" : ["K64F"], | ||
"toolchains" : ["GCC_ARM"], | ||
"exporters": [], | ||
"compile" : true, | ||
"export": true, | ||
"test" : false, | ||
"baud_rate": 9600, | ||
"compare_log": ["mbed-os-example-atecc608a/tests/atecc608a.log"], | ||
"auto-update" : true | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is examples.json the place to specify which RaaS There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This file has no control of which tatget in RaaS to use at moment. but no harm to put the info here, we'll need to sort that out in the test part |
||
} | ||
] | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Any target with I2C should work, although maybe this list is how you keep integration testing from growing too big.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That is might depends on which target in the RaaS got the
atecc608a
shield. Also it is true we don't want to compile the exampled for too many target, it will not slow down the testing process