Skip to content
This repository has been archived by the owner on Mar 13, 2024. It is now read-only.

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
fujisheng authored Jan 27, 2024
1 parent f30c8a8 commit 49ed232
Showing 1 changed file with 48 additions and 1 deletion.
49 changes: 48 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,52 @@
on: [push, pull_request, workflow_dispatch]

name: Build

jobs:
build:
uses: petejohanson/zmk/.github/workflows/build-user-config.yml@core/zephyr-3.5-update
runs-on: ubuntu-latest
container:
image: zmkfirmware/zmk-build-arm:3.5-branch
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 -d build/left -b flkb_left -- -DZMK_CONFIG="${GITHUB_WORKSPACE}/config"
- name: FLKB Left Kconfig file
run: grep -vE '(^#|^$)' build/left/zephyr/.config
- name: West Build (right)
run: west build -s zmk/app -d build/right -b flkb_right -- -DZMK_CONFIG="${GITHUB_WORKSPACE}/config"
- name: FLKB Right Kconfig file
run: grep -vE '(^#|^$)' build/right/zephyr/.config
- name: Rename zmk.uf2
run: cp build/left/zephyr/zmk.uf2 left.uf2 && cp build/right/zephyr/zmk.uf2 right.uf2
- name: Archive (FLKB)
uses: actions/upload-artifact@v3
with:
name: firmware
path: |
left.uf2
right.uf2

0 comments on commit 49ed232

Please sign in to comment.