2020-11-28 01:57:22 +11:00
|
|
|
name: Build
|
|
|
|
|
2020-11-04 07:02:15 +11:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths:
|
2020-11-29 06:18:18 +11:00
|
|
|
- ".github/workflows/build.yml"
|
2020-11-04 07:02:15 +11:00
|
|
|
- "app/**"
|
|
|
|
pull_request:
|
|
|
|
paths:
|
2020-11-29 06:18:18 +11:00
|
|
|
- ".github/workflows/build.yml"
|
2020-11-04 07:02:15 +11:00
|
|
|
- "app/**"
|
2020-06-09 01:28:52 +10:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
2020-06-17 12:40:47 +10:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2020-12-02 13:16:53 +11:00
|
|
|
board:
|
|
|
|
- bluemicro840_v1
|
2020-12-02 14:27:14 +11:00
|
|
|
- nice_nano
|
2020-12-02 13:16:53 +11:00
|
|
|
- nrfmicro_13
|
2020-12-02 14:27:14 +11:00
|
|
|
- proton_c
|
2020-07-17 13:41:55 +10:00
|
|
|
shield:
|
2020-10-24 15:21:15 +11:00
|
|
|
- boardsource3x4
|
2020-08-11 01:29:16 +10:00
|
|
|
- corne_left
|
|
|
|
- corne_right
|
2020-12-02 14:29:10 +11:00
|
|
|
- cradio_left
|
|
|
|
- cradio_right
|
2020-09-15 13:20:29 +10:00
|
|
|
- iris_left
|
|
|
|
- iris_right
|
2020-11-06 07:45:46 +11:00
|
|
|
- jian_left
|
|
|
|
- jian_right
|
2020-12-02 14:27:14 +11:00
|
|
|
- jorne_left
|
|
|
|
- jorne_right
|
|
|
|
- kyria_left
|
|
|
|
- kyria_right
|
|
|
|
- lily58_left
|
|
|
|
- lily58_right
|
2020-12-02 14:29:10 +11:00
|
|
|
- microdox_left
|
|
|
|
- microdox_right
|
2020-12-02 14:27:14 +11:00
|
|
|
- nibble
|
2020-12-02 14:29:10 +11:00
|
|
|
- qaz
|
2020-12-02 14:27:14 +11:00
|
|
|
- quefrency_left
|
|
|
|
- quefrency_right
|
2020-10-25 13:08:00 +11:00
|
|
|
- reviung41
|
2020-08-27 06:31:46 +10:00
|
|
|
- romac
|
2020-09-22 15:52:50 +10:00
|
|
|
- romac_plus
|
2020-09-13 13:48:44 +10:00
|
|
|
- settings_reset
|
2020-12-02 14:29:10 +11:00
|
|
|
- sofle_left
|
|
|
|
- sofle_right
|
|
|
|
- splitreus62_left
|
|
|
|
- splitreus62_right
|
|
|
|
- tg4x
|
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
|
|
|
|
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-11-29 04:48:18 +11:00
|
|
|
key: 3-${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('app/west.yml') }}
|
2020-06-09 11:23:34 +10:00
|
|
|
restore-keys: |
|
2020-11-29 04:48:18 +11:00
|
|
|
3-${{ runner.os }}-build-${{ env.cache-name }}-
|
|
|
|
3-${{ runner.os }}-build-
|
|
|
|
3-${{ runner.os }}-
|
2020-11-28 01:57:22 +11:00
|
|
|
timeout-minutes: 2
|
|
|
|
continue-on-error: true
|
|
|
|
- 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-11-28 01:57:22 +11: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-11-28 01:57:22 +11: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-11-28 01:57:22 +11: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-12-02 21:24:32 +11:00
|
|
|
- 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}
|
2020-11-28 01:57:22 +11: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-12-02 21:24:32 +11:00
|
|
|
args: 'build "-s app -b ${{ matrix.board }} -- ${{ steps.variables.outputs.shield-arg }}'
|
2020-11-28 01:57:22 +11:00
|
|
|
- name: Archive build
|
2020-06-17 12:57:20 +10:00
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
2020-12-02 21:24:32 +11:00
|
|
|
name: "${{ steps.variables.outputs.artifact-name }}-uf2"
|
2020-06-17 12:57:20 +10:00
|
|
|
path: build/zephyr/zmk.uf2
|