From ed8b4f48754fa349dea410c04a640aba1108afec Mon Sep 17 00:00:00 2001 From: Gerard Marull-Paretas Date: Fri, 1 Jul 2022 15:35:04 +0200 Subject: [PATCH] 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 --- .github/workflows/build.yml | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 791e51e..7c875f4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -25,7 +25,7 @@ jobs: - name: Build firmware working-directory: example-application run: | - west build -b custom_plank -s app + west build -b custom_plank app - name: Archive firmware uses: actions/upload-artifact@v2 diff --git a/README.md b/README.md index 8e7821a..abc5b37 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ west update The application can be built by running: ```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 @@ -57,7 +57,7 @@ appropriate overlay is provided (see `app/boards`). A sample debug configuration is also provided. You can apply it by running: ```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