-
Notifications
You must be signed in to change notification settings - Fork 116
add circle ci #279
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
add circle ci #279
Conversation
.circleci/config.yml
Outdated
find . -name mbed-os.lib -delete | ||
mbed deploy | ||
for i in BLE_* ; do cd $i ; ln -s $PWD/../../mbed-os mbed-os ; ln -s $PWD/../../BUILD BUILD ; cd .. ; done | ||
for i in BLE_* ; do cd $i ; mbed compile -t GCC_ARM -m NRF52840_DK || break ; cd .. ; done |
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.
Can we compile for DISCO_L475VG_IOT01A
as well ?
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.
added DISCO target
- checkout: | ||
path: mbed-os-example-ble | ||
- run: | | ||
git clone https://github.com/ARMmbed/mbed-os.git |
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.
We expect master to always be compatible with the head of the repo.
But it doesn't mean the release branch will be compatible with the head of the repo in case of breaking change.
.circleci/config.yml
Outdated
mkdir BUILD | ||
cd mbed-os-example-ble | ||
find . -name mbed-os.lib -delete | ||
mbed deploy |
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.
maybe we can run deploy in each example to avoid running it in the deprecated folder.
Hi @pan- I update the configuration as you requested.
|
ping @pan- @donatieng |
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.
LGTM
Add circle ci for building ble example