Skip to content

Commit 3ad3f1e

Browse files
authored
Merge pull request #229 from ARMmbed/release_candidate
Update for mbed-os-6.15.1
2 parents f1982ca + 05e9b8d commit 3ad3f1e

File tree

3 files changed

+56
-64
lines changed

3 files changed

+56
-64
lines changed

.circleci/config.yml

-63
This file was deleted.

.github/workflows/main.yml

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
name: Build example application
2+
3+
on:
4+
pull_request:
5+
push:
6+
7+
jobs:
8+
build-cli-v1:
9+
container:
10+
image: ghcr.io/armmbed/mbed-os-env:master-latest
11+
12+
runs-on: ubuntu-latest
13+
14+
strategy:
15+
matrix:
16+
target: ["DISCO_l496AG", "WIO_3G", "NRF52840_DK"]
17+
profile: [release, debug, develop]
18+
19+
20+
steps:
21+
-
22+
name: Checkout
23+
uses: actions/checkout@v2
24+
25+
-
26+
name: build-example
27+
run: |
28+
set -e
29+
mbed deploy
30+
mbed compile -t GCC_ARM -m ${{ matrix.target }} --profile ${{ matrix.profile }}
31+
32+
33+
build-cli-v2:
34+
container:
35+
image: ghcr.io/armmbed/mbed-os-env:master-latest
36+
37+
runs-on: ubuntu-latest
38+
39+
strategy:
40+
matrix:
41+
target: ["DISCO_l496AG", "WIO_3G", "NRF52840_DK"]
42+
profile: [release, debug, develop]
43+
44+
45+
steps:
46+
-
47+
name: Checkout
48+
uses: actions/checkout@v2
49+
50+
-
51+
name: build-example-application
52+
run: |
53+
set -e
54+
mbed-tools deploy
55+
mbed-tools compile -t GCC_ARM -m ${{ matrix.target }} --profile ${{ matrix.profile }}

mbed-os.lib

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
https://github.com/ARMmbed/mbed-os/#4cfbea43cabe86bc3ed7a5287cd464be7a218938
1+
https://github.com/ARMmbed/mbed-os/#2eb06e76208588afc6cb7580a8dd64c5429a10ce

0 commit comments

Comments
 (0)