zmk/.github/workflows/build.yml

95 lines
2.6 KiB
YAML
Raw Normal View History

on:
push:
paths:
- "app/**"
pull_request:
paths:
- "app/**"
2020-06-08 08:28:52 -07:00
2020-06-08 19:48:25 -07:00
name: Build
2020-06-08 08:28:52 -07:00
jobs:
build:
runs-on: ubuntu-latest
name: Build Test
strategy:
matrix:
board: [proton_c, nice_nano, bluemicro840_v1, nrfmicro_13]
2020-07-16 20:41:55 -07:00
shield:
2020-10-23 21:21:15 -07:00
- boardsource3x4
- corne_left
- corne_right
2020-07-16 20:41:55 -07:00
- kyria_left
- kyria_right
- lily58_left
- lily58_right
- iris_left
- iris_right
2020-11-05 12:45:26 -08:00
- jorne_left
- jorne_right
2020-11-05 12:45:46 -08:00
- jian_left
- jian_right
2020-10-24 19:08:00 -07:00
- reviung41
2020-08-26 13:31:46 -07:00
- romac
2020-09-21 22:52:50 -07:00
- romac_plus
- settings_reset
2020-09-26 11:59:12 -07:00
- quefrency_left
- quefrency_right
- nibble
include:
- board: proton_c
shield: clueboard_california
2020-06-08 08:28:52 -07:00
steps:
# To use this repository's private action,
# you must check out the repository
- name: Checkout
uses: actions/checkout@v2
2020-06-08 18:23:34 -07:00
- name: Cache west modules
timeout-minutes: 2
continue-on-error: true
2020-06-08 18:23:34 -07:00
uses: actions/cache@v2
env:
cache-name: cache-zephyr-modules
with:
2020-06-08 18:26:50 -07:00
path: |
modules/
tools/
zephyr/
bootloader/
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('app/west.yml') }}
2020-06-08 18:23:34 -07:00
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
2020-06-08 08:28:52 -07:00
- name: West Init
uses: "docker://zmkfirmware/zephyr-west-action-arm:latest"
2020-06-08 08:28:52 -07:00
id: west-init
with:
2020-06-12 14:00:14 -07:00
args: 'init "-l app"'
2020-06-08 08:28:52 -07:00
- name: West Update
uses: "docker://zmkfirmware/zephyr-west-action-arm:latest"
2020-06-08 08:28:52 -07:00
id: west-update
with:
args: "update"
2020-06-08 08:28:52 -07:00
- name: West Config Zephyr Base
uses: "docker://zmkfirmware/zephyr-west-action-arm:latest"
2020-06-08 08:28:52 -07:00
id: west-config
with:
2020-06-12 14:00:14 -07:00
args: 'config "--global zephyr.base-prefer configfile"'
2020-06-08 08:28:52 -07:00
- name: West Zephyr Export
uses: "docker://zmkfirmware/zephyr-west-action-arm:latest"
2020-06-08 08:28:52 -07:00
id: west-zephyr-export
with:
args: "zephyr-export"
2020-06-08 08:28:52 -07:00
- name: West Build
uses: "docker://zmkfirmware/zephyr-west-action-arm:latest"
2020-06-08 08:30:05 -07:00
id: west-build
2020-06-08 08:28:52 -07:00
with:
args: 'build "-s app -b ${{ matrix.board }} -- -DSHIELD=${{ matrix.shield }}"'
- name: Archive Build
uses: actions/upload-artifact@v2
if: ${{ matrix.board != 'proton_c' }}
with:
name: "${{ matrix.board }}-${{ matrix.shield }}-zmk-uf2"
path: build/zephyr/zmk.uf2