Add nice!view adapter to the build #2
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 (Left) | |
run: west build -s zmk/app -b nice_nano_v2 -- -DSHIELD=tako_left -DZMK_CONFIG="${GITHUB_WORKSPACE}/config" -DZEPHYR_EXTRA_MODULES="$PWD/zmk/app/drivers;${GITHUB_WORKSPACE}/config/tako_drivers/" | |
- name: Left Kconfig file | |
run: cat build/zephyr/.config | grep -v "^#" | grep -v "^$" | |
- name: Rename zmk.uf2 | |
run: cp build/zephyr/zmk.uf2 tako_left_nice_nano_v2.uf2 | |
- name: Archive (Left) | |
uses: actions/upload-artifact@v3 | |
with: | |
name: firmware-zmk-sweep | |
path: tako_left_nice_nano_v2.uf2 | |
- name: West Build (Right) | |
run: west build --pristine -s zmk/app -b nice_nano_v2 -- -DSHIELD=tako_right -DZMK_CONFIG="${GITHUB_WORKSPACE}/config" -DZEPHYR_EXTRA_MODULES="$PWD/zmk/app/drivers;${GITHUB_WORKSPACE}/config/tako_drivers/" | |
- name: Right Kconfig file | |
run: cat build/zephyr/.config | grep -v "^#" | grep -v "^$" | |
- name: Rename zmk.uf2 | |
run: cp build/zephyr/zmk.uf2 tako_right_nice_nano_v2.uf2 | |
- name: Archive (Right) | |
uses: actions/upload-artifact@v3 | |
with: | |
name: firmware-zmk-sweep | |
path: tako_right_nice_nano_v2.uf2 |