zmk_mf68/.github/workflows/build.yml

54 lines
1.6 KiB
YAML
Raw Normal View History

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
name: Build Test
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-06-09 11:23:34 +10:00
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('app/west.yml') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
2020-06-09 01:28:52 +10:00
- name: West Init
2020-06-13 06:54:23 +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-13 06:57:14 +10:00
uses: 'docker://zmkfirmware/zephyr-west-action-arm:latest'
2020-06-09 01:28:52 +10:00
id: west-update
with:
2020-06-13 06:54:23 +10:00
args: 'update'
2020-06-09 01:28:52 +10:00
- name: West Config Zephyr Base
2020-06-13 06:54:23 +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-13 06:54:23 +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-13 06:54:23 +10:00
args: 'zephyr-export'
2020-06-09 01:28:52 +10:00
- name: West Build
2020-06-13 06:54:23 +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-13 07:00:14 +10:00
args: 'build "-s app -b proton_c -- -DSHIELD=petejohanson_proton_handwire"'