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:

https://github.com/zephyrproject-rtos/zephyr/pull/40669

Let's update README.

Signed-off-by: Gerard Marull-Paretas <gerard@teslabs.com>
This commit is contained in:
Gerard Marull-Paretas 2022-07-01 15:35:04 +02:00 committed by Carles Cufí
parent d9831e96f0
commit ed8b4f4875
2 changed files with 3 additions and 3 deletions

View file

@ -25,7 +25,7 @@ jobs:
- name: Build firmware - name: Build firmware
working-directory: example-application working-directory: example-application
run: | run: |
west build -b custom_plank -s app west build -b custom_plank app
- name: Archive firmware - name: Archive firmware
uses: actions/upload-artifact@v2 uses: actions/upload-artifact@v2

View file

@ -47,7 +47,7 @@ west update
The application can be built by running: The application can be built by running:
```shell ```shell
west build -b $BOARD -s app west build -b $BOARD app
``` ```
where `$BOARD` is the target board. The `custom_plank` board found in this where `$BOARD` is the target board. The `custom_plank` board found in this
@ -57,7 +57,7 @@ appropriate overlay is provided (see `app/boards`).
A sample debug configuration is also provided. You can apply it by running: A sample debug configuration is also provided. You can apply it by running:
```shell ```shell
west build -b $BOARD -s app -- -DOVERLAY_CONFIG=debug.conf west build -b $BOARD app -- -DOVERLAY_CONFIG=debug.conf
``` ```
Note that you may also use it together with `rtt.conf` if using Segger RTT. Once Note that you may also use it together with `rtt.conf` if using Segger RTT. Once