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