Skip to content

Commit c8b22d6

Browse files
authored
Initial commit
0 parents  commit c8b22d6

File tree

5 files changed

+42
-0
lines changed

5 files changed

+42
-0
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
name: Build ZMK firmware
2+
on: [push, pull_request, workflow_dispatch]
3+
4+
jobs:
5+
build:
6+
uses: zmkfirmware/zmk/.github/workflows/build-user-config.yml@main

boards/shields/.gitkeep

Whitespace-only changes.

build.yaml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# This file generates the GitHub Actions matrix.
2+
# For simple board + shield combinations, add them to the top level board and
3+
# shield arrays, for more control, add individual board + shield combinations
4+
# to the `include` property. You can also use the `cmake-args` property to
5+
# pass flags to the build command, `snippet` to add a Zephyr snippet, and
6+
# `artifact-name` to assign a name to distinguish build outputs from each other:
7+
#
8+
# board: [ "nice_nano_v2" ]
9+
# shield: [ "corne_left", "corne_right" ]
10+
# include:
11+
# - board: bdn9_rev2
12+
# - board: nice_nano_v2
13+
# shield: reviung41
14+
# - board: nice_nano_v2
15+
# shield: corne_left
16+
# snippet: studio-rpc-usb-uart
17+
# cmake-args: -DCONFIG_ZMK_STUDIO=y
18+
# artifact-name: corne_left_with_studio
19+
#
20+
---

config/west.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
manifest:
2+
remotes:
3+
- name: zmkfirmware
4+
url-base: https://github.com/zmkfirmware
5+
# Additional modules containing boards/shields/custom code can be listed here as well
6+
# See https://docs.zephyrproject.org/3.2.0/develop/west/manifest.html#projects
7+
projects:
8+
- name: zmk
9+
remote: zmkfirmware
10+
revision: main
11+
import: app/west.yml
12+
self:
13+
path: config

zephyr/module.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
build:
2+
settings:
3+
board_root: .

0 commit comments

Comments
 (0)