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-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-09 11:53:48 +10:00
|
|
|
uses: zmkfirmware/zephyr-west-action@v0.1.0
|
2020-06-09 01:28:52 +10:00
|
|
|
id: west-init
|
|
|
|
with:
|
|
|
|
command: 'init'
|
2020-06-09 11:07:16 +10:00
|
|
|
command-args: '-l app'
|
2020-06-09 01:28:52 +10:00
|
|
|
- name: West Update
|
2020-06-09 11:53:48 +10:00
|
|
|
uses: zmkfirmware/zephyr-west-action@v0.1.0
|
2020-06-09 01:28:52 +10:00
|
|
|
id: west-update
|
|
|
|
with:
|
|
|
|
command: 'update'
|
|
|
|
- name: West Config Zephyr Base
|
2020-06-09 11:53:48 +10:00
|
|
|
uses: zmkfirmware/zephyr-west-action@v0.1.0
|
2020-06-09 01:28:52 +10:00
|
|
|
id: west-config
|
|
|
|
with:
|
|
|
|
command: 'config'
|
|
|
|
command-args: '--global zephyr.base-prefer configfile'
|
|
|
|
- name: West Zephyr Export
|
2020-06-09 11:53:48 +10:00
|
|
|
uses: zmkfirmware/zephyr-west-action@v0.1.0
|
2020-06-09 01:28:52 +10:00
|
|
|
id: west-zephyr-export
|
|
|
|
with:
|
|
|
|
command: 'zephyr-export'
|
|
|
|
- name: West Build
|
2020-06-09 11:53:48 +10:00
|
|
|
uses: zmkfirmware/zephyr-west-action@v0.1.0
|
2020-06-09 01:30:05 +10:00
|
|
|
id: west-build
|
2020-06-09 01:28:52 +10:00
|
|
|
with:
|
|
|
|
command: 'build'
|
2020-06-09 11:14:05 +10:00
|
|
|
command-args: '-s app -b nucleo_wb55rg -- -DSHIELD=petejohanson_handwire'
|