Skip to content

Commit

Permalink
ci(build): add support for board-only builds
Browse files Browse the repository at this point in the history
Lays the groundwork for CI building boards that don't require shields.

PR: zmkfirmware#464
  • Loading branch information
innovaker authored and petejohanson committed Dec 7, 2020
1 parent 7ea1892 commit 8ad4f41
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,13 +86,28 @@ jobs:
id: west-zephyr-export
with:
args: "zephyr-export"
- name: Prepare variables
id: variables
run: |
SHIELD_ARG=
ARTIFACT_NAME="${{ matrix.board }}"
if [ -n "${{ matrix.shield }}" ]; then
SHIELD_ARG="-DSHIELD=${{ matrix.shield }}"
ARTIFACT_NAME="${ARTIFACT_NAME}-${{ matrix.shield }}"
fi
ARTIFACT_NAME="${ARTIFACT_NAME}-zmk"
echo ::set-output name=shield-arg::${SHIELD_ARG}
echo ::set-output name=artifact-name::${ARTIFACT_NAME}
- name: West build
uses: "docker://zmkfirmware/zephyr-west-action-arm:latest"
id: west-build
with:
args: 'build "-s app -b ${{ matrix.board }} -- -DSHIELD=${{ matrix.shield }}"'
args: 'build "-s app -b ${{ matrix.board }} -- ${{ steps.variables.outputs.shield-arg }}'
- name: Archive build
uses: actions/upload-artifact@v2
with:
name: "${{ matrix.board }}-${{ matrix.shield }}-zmk-uf2"
name: "${{ steps.variables.outputs.artifact-name }}-uf2"
path: build/zephyr/zmk.uf2

0 comments on commit 8ad4f41

Please sign in to comment.