Skip to content

Commit 11e6857

Browse files
authored
Merge pull request #53 from ARMmbed/release_candidate
Update for mbed-os-6.15.1
2 parents 9119a94 + 4da6f44 commit 11e6857

File tree

4 files changed

+56
-128
lines changed

4 files changed

+56
-128
lines changed

.circleci/config.yml

Lines changed: 0 additions & 18 deletions
This file was deleted.

.github/workflows/main.yml

Lines changed: 55 additions & 0 deletions
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: [K64F, DISCO_L475VG_IOT01A]
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: [K64F, DISCO_L475VG_IOT01A]
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 }}

.travis.yml

Lines changed: 0 additions & 109 deletions
This file was deleted.

mbed-os.lib

Lines changed: 1 addition & 1 deletion
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)