Skip to content

Commit ed8b4f4

Browse files
gmarullcarlescufi
authored andcommitted
ci/readme: remove usage of -s legacy option
-s/--source is a legacy option. There's a proposal to actually use it for something else in Zephyr now: zephyrproject-rtos/zephyr#40669 Let's update README. Signed-off-by: Gerard Marull-Paretas <[email protected]>
1 parent d9831e9 commit ed8b4f4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Build firmware
2626
working-directory: example-application
2727
run: |
28-
west build -b custom_plank -s app
28+
west build -b custom_plank app
2929
3030
- name: Archive firmware
3131
uses: actions/upload-artifact@v2

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ west update
4747
The application can be built by running:
4848

4949
```shell
50-
west build -b $BOARD -s app
50+
west build -b $BOARD app
5151
```
5252

5353
where `$BOARD` is the target board. The `custom_plank` board found in this
@@ -57,7 +57,7 @@ appropriate overlay is provided (see `app/boards`).
5757
A sample debug configuration is also provided. You can apply it by running:
5858

5959
```shell
60-
west build -b $BOARD -s app -- -DOVERLAY_CONFIG=debug.conf
60+
west build -b $BOARD app -- -DOVERLAY_CONFIG=debug.conf
6161
```
6262

6363
Note that you may also use it together with `rtt.conf` if using Segger RTT. Once

0 commit comments

Comments
 (0)