mirror of
https://github.com/ClaytonWWilson/miryoku_zmk.git
synced 2025-12-13 17:58:47 +00:00
Add step to workflow to show dts.pre.tmp
This commit is contained in:
parent
27cf03cc48
commit
857a0d95ed
8
.github/workflows/main.yml
vendored
8
.github/workflows/main.yml
vendored
@ -163,6 +163,14 @@ jobs:
|
|||||||
run: west zephyr-export
|
run: west zephyr-export
|
||||||
- name: Build (west build)
|
- name: Build (west build)
|
||||||
run: west build -s zmk/app -b ${{ matrix.board }} -- ${{ steps.variables.outputs.shield-arg }} -DZMK_CONFIG="${GITHUB_WORKSPACE}/config"
|
run: west build -s zmk/app -b ${{ matrix.board }} -- ${{ steps.variables.outputs.shield-arg }} -DZMK_CONFIG="${GITHUB_WORKSPACE}/config"
|
||||||
|
- name: Show dts.pre.tmp
|
||||||
|
if: ${{ failure() }}
|
||||||
|
run: |
|
||||||
|
dts="build/zephyr/${{ matrix.board }}.dts.pre.tmp"
|
||||||
|
if [ -f "$dts" ]
|
||||||
|
then
|
||||||
|
cat -n "$dts"
|
||||||
|
fi
|
||||||
- name: Prepare firmware artifacts
|
- name: Prepare firmware artifacts
|
||||||
run: |
|
run: |
|
||||||
for extension in "hex" "uf2"
|
for extension in "hex" "uf2"
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user