Skip to content

copied current build config from upstream #55

copied current build config from upstream

copied current build config from upstream #55

Workflow file for this run

on: [push, pull_request, workflow_dispatch]
name: Build
jobs:
build:
environment: testenv
runs-on: ubuntu-latest
container:
image: zmkfirmware/zmk-build-arm:stable
name: Build
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Cache west modules
uses: actions/cache@v2
env:
cache-name: cache-zephyr-modules
with:
path: |
modules/
tools/
zephyr/
bootloader/
zmk/
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('manifest-dir/west.yml') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Inject Secrets
env:
EMAIL: ${{ secrets.EMAIL }}
shell: bash
run: sed -i "s/\/\*SECRET_EMAIL\*\/ &kp E/${EMAIL}/" config/atreus50.keymap
- name: West Init
run: west init -l config
- name: West Update
run: west update
- name: West Zephyr export
run: west zephyr-export
- name: West Build (Atreus50)
run: west build -s zmk/app -b nice_nano -- -DSHIELD=atreus50 -DZMK_CONFIG="${GITHUB_WORKSPACE}/config"
- name: Atreus50 Kconfig file
run: cat build/zephyr/.config | grep -v "^#" | grep -v "^$"
- name: Rename zmk.uf2
run: cp build/zephyr/zmk.uf2 atreus50_nice_nano.uf2
- name: Archive (Atreus50)
uses: actions/upload-artifact@v2
with:
name: firmware
path: atreus50_nice_nano.uf2