Skip to content

Commit 0cb4670

Browse files
author
Qinghao Shi
committed
update CI steps with names
1 parent a7ca7a1 commit 0cb4670

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.circleci/config.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,16 @@ jobs:
1212
path: sinppet/TESTS
1313

1414
### Repo structure Tests ###
15-
- run: |
15+
- run:
16+
name: Repo structure Tests
17+
command: |
1618
cd sinppet/TESTS
1719
python3 .circleci/repo_checks.py
1820

1921
### Astyle Tests ###
20-
- run: |
22+
- run:
23+
name: Astyle Tests
24+
command: |
2125
cd sinppet/TESTS
2226
wget https://github.com/ARMmbed/mbed-os/raw/master/.astylerc
2327
git --no-pager diff --name-only --diff-filter=dr $(git merge-base --fork-point origin/master) HEAD | ( grep '.\(c\|cpp\|h\|hpp\)$' || true ) | while read file; do astyle -n --options=.astylerc "${file}"; done
@@ -26,7 +30,9 @@ jobs:
2630
### Compile Tests ###
2731
- run: mv sinppet/TESTS/mbed-os.lib .
2832
- run: git clone https://github.com/ARMmbed/mbed-os.git mbed-os
29-
- run: |
33+
- run:
34+
name: Compile Tests
35+
command: |
3036
mbed config root .
3137
mbed update
3238
mbed add https://github.com/c1728p9/AudioPlayer

0 commit comments

Comments
 (0)