Skip to content

Commit

Permalink
Merge pull request #70 from ARMmbed/release_candidate
Browse files Browse the repository at this point in the history
Update for mbed-os-6.12.0
  • Loading branch information
mbedmain authored Jun 23, 2021
2 parents 77f02ba + db9069c commit ba5b1d5
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 1 deletion.
43 changes: 43 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# CircleCI 2.1 configuration file
#
version: 2.1
commands:
compile:
parameters:
target:
type: string
profile:
type: string
steps:
- run: |
cd mbed-os-example-atecc608a/atecc608a
mbed compile -t GCC_ARM -m <<parameters.target>> --profile <<parameters.profile>>
jobs:
build:
docker:
- image: mbedos/mbed-os-env:latest
working_directory: ~
steps:
- checkout:
path: mbed-os-example-atecc608a
- run: |
cd mbed-os-example-atecc608a/atecc608a
mbed-tools deploy
- compile:
target: "K64F"
profile: "develop"
- compile:
target: "K64F"
profile: "debug"
- compile:
target: "K64F"
profile: "release"
- compile:
target: "NRF52_DK"
profile: "develop"
- compile:
target: "NRF52_DK"
profile: "debug"
- compile:
target: "NRF52_DK"
profile: "release"
2 changes: 1 addition & 1 deletion atecc608a/mbed-os.lib
Original file line number Diff line number Diff line change
@@ -1 +1 @@
https://github.com/ARMmbed/mbed-os/#14e5d307bb6cdccb554b591ab2602d8d47e0b2d0
https://github.com/ARMmbed/mbed-os/#cecc47b4a53951527dd3f670465c8566396ad101

0 comments on commit ba5b1d5

Please sign in to comment.