From 9d8b93c2640da7ce20bacfa13ce25cfca3eb34b3 Mon Sep 17 00:00:00 2001 From: Manna Harbour <51143715+manna-harbour@users.noreply.github.com> Date: Tue, 5 Apr 2022 11:36:50 +1000 Subject: [PATCH] Remove Show dts.pre.tmp and Convert seeeduino_xiao bin to uf2 steps --- .github/workflows/main.yml | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 512b894..239db55 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -237,23 +237,6 @@ jobs: run: west zephyr-export - name: Build 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: Convert seeeduino_xiao bin to uf2 - if: ${{ matrix.board == 'seeeduino_xiao' }} - run: | - bin='build/zephyr/zmk.bin' - uf2='build/zephyr/zmk.uf2' - if [ -f "$bin" -a ! -f "$uf2" ] - then - python3 ./tools/uf2/utils/uf2conv.py -c -f SAMD21 -o "$uf2" "$bin" - fi - name: Prepare firmware artifacts run: | for extension in "hex" "uf2"