update README #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [push, pull_request, workflow_dispatch] | |
name: Build | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: | |
image: zmkfirmware/zmk-build-arm:stable | |
name: Build | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Cache west modules | |
uses: actions/cache@v3 | |
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: West Init | |
run: west init -l config | |
- name: West Update | |
run: west update | |
- name: West Zephyr export | |
run: west zephyr-export | |
- name: West Build (dongle) | |
run: west build -s zmk/app -d build/dongle -b ego46_dongle -- -DZMK_CONFIG="${GITHUB_WORKSPACE}/config" | |
- name: Ego46 Dongle Kconfig file | |
run: grep -vE '(^#|^$)' build/dongle/zephyr/.config | |
- name: West Build (left) | |
run: west build -s zmk/app -d build/left -b ego46_left -- -DZMK_CONFIG="${GITHUB_WORKSPACE}/config" | |
- name: Ego46 Left Kconfig file | |
run: grep -vE '(^#|^$)' build/left/zephyr/.config | |
- name: West Build (right) | |
run: west build -s zmk/app -d build/right -b ego46_right -- -DZMK_CONFIG="${GITHUB_WORKSPACE}/config" | |
- name: Ego46 Right Kconfig file | |
run: grep -vE '(^#|^$)' build/right/zephyr/.config | |
- name: Rename zmk.uf2 | |
run: cp build/left/zephyr/zmk.uf2 ego46_left.uf2 && cp build/right/zephyr/zmk.uf2 ego46_right.uf2 && cp build/dongle/zephyr/zmk.uf2 ego46_dongle.uf2 | |
- name: Archive (Ego46) | |
uses: actions/upload-artifact@v3 | |
with: | |
name: firmware | |
path: | | |
ego46_left.uf2 | |
ego46_right.uf2 | |
ego46_dongle.uf2 |