summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorinnovaker <66737976+innovaker@users.noreply.github.com>2020-12-11 13:37:29 +0000
committerPete Johanson <peter@peterjohanson.com>2020-12-17 16:44:11 -0500
commit78acd7610e2189b49acb01464b570ce89f1a58e3 (patch)
tree67c60f4e6d42bbaad86ca97ccb1cba8e5910f64a /.github
parente2aef89d99e0f03939780fb7cffb3e0a817037ee (diff)
ci: improve step names
Improves readability and informativeness. PR: #515
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml10
-rw-r--r--.github/workflows/test.yml8
2 files changed, 9 insertions, 9 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 5c76745..1763ecf 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -82,11 +82,11 @@ jobs:
4-${{ runner.os }}-
timeout-minutes: 2
continue-on-error: true
- - name: West init
+ - name: Initialize workspace (west init)
run: west init -l app
- - name: West update
+ - name: Update modules (west update)
run: west update
- - name: West Zephyr export
+ - name: Export Zephyr CMake package (west zephyr-export)
run: west zephyr-export
- name: Prepare variables
id: variables
@@ -103,9 +103,9 @@ jobs:
echo ::set-output name=shield-arg::${SHIELD_ARG}
echo ::set-output name=artifact-name::${ARTIFACT_NAME}
- - name: West build
+ - name: Build (west build)
run: west build -s app -b ${{ matrix.board }} -- ${{ steps.variables.outputs.shield-arg }}
- - name: Archive build
+ - name: Archive artifacts
uses: actions/upload-artifact@v2
with:
name: "${{ steps.variables.outputs.artifact-name }}"
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index e079754..2f7992c 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -37,15 +37,15 @@ jobs:
4-${{ runner.os }}-
timeout-minutes: 2
continue-on-error: true
- - name: West init
+ - name: Initialize workspace (west init)
run: west init -l app
- - name: West update
+ - name: Update modules (west update)
run: west update
- - name: West Zephyr export
+ - name: Export Zephyr CMake package (west zephyr-export)
run: west zephyr-export
- name: Test all
run: west test
- - name: Archive build
+ - name: Archive artifacts
if: ${{ always() }}
uses: actions/upload-artifact@v2
with: