Skip to content

Commit

Permalink
Build matrix with nice_nano and proton_c boards.
Browse files Browse the repository at this point in the history
  • Loading branch information
petejohanson committed Jun 17, 2020
1 parent 8ee9a37 commit 05591ff
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ jobs:
build:
runs-on: ubuntu-latest
name: Build Test
strategy:
matrix:
board: [proton_c, nice_nano]
steps:
# To use this repository's private action,
# you must check out the repository
Expand All @@ -27,27 +30,27 @@ jobs:
${{ runner.os }}-build-
${{ runner.os }}-
- name: West Init
uses: 'docker://zmkfirmware/zephyr-west-action-arm:latest'
uses: "docker://zmkfirmware/zephyr-west-action-arm:latest"
id: west-init
with:
args: 'init "-l app"'
- name: West Update
uses: 'docker://zmkfirmware/zephyr-west-action-arm:latest'
uses: "docker://zmkfirmware/zephyr-west-action-arm:latest"
id: west-update
with:
args: 'update'
args: "update"
- name: West Config Zephyr Base
uses: 'docker://zmkfirmware/zephyr-west-action-arm:latest'
uses: "docker://zmkfirmware/zephyr-west-action-arm:latest"
id: west-config
with:
args: 'config "--global zephyr.base-prefer configfile"'
- name: West Zephyr Export
uses: 'docker://zmkfirmware/zephyr-west-action-arm:latest'
uses: "docker://zmkfirmware/zephyr-west-action-arm:latest"
id: west-zephyr-export
with:
args: 'zephyr-export'
args: "zephyr-export"
- name: West Build
uses: 'docker://zmkfirmware/zephyr-west-action-arm:latest'
uses: "docker://zmkfirmware/zephyr-west-action-arm:latest"
id: west-build
with:
args: 'build "-s app -b proton_c -- -DSHIELD=petejohanson_proton_handwire"'
args: 'build "-s app -b ${{ matrix.board }} -- -DSHIELD=petejohanson_proton_handwire"'

0 comments on commit 05591ff

Please sign in to comment.