-
Notifications
You must be signed in to change notification settings - Fork 79
73 lines (60 loc) · 2.79 KB
/
build_keyboard.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
name: Build keyboard firmware
run-name: Build keyboard firmware
on:
# push:
# branches: ["via"]
# pull_request:
# branches: ["via"]
# # Allows you to run this workflow manually from the Actions tab or through HTTP API
workflow_dispatch:
inputs:
keyboard:
description: "Keyboard name"
required: true
type: string
keymap:
description: "Specified keymap"
default: "default"
required: true
type: string
env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: Release
jobs:
build:
# The CMake configure and build commands are platform agnostic and should work equally well on Windows or Mac.
# You can convert this to a matrix build if you need cross-platform coverage.
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Fetch all
run: git fetch
- name: Prepare Submodules
run: git -c submodule."qmk_porting/keyboards_private".update=none submodule update --recursive --init
- name: Prepare Python requirements
run: pip3 install -r ./mcuboot/scripts/requirements.txt
- name: Configure CMake
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
run: cmake --no-warn-unused-cli -DCMAKE_EXPORT_COMPILE_COMMANDS:BOOL=TRUE -DCMAKE_BUILD_TYPE:STRING=${{env.BUILD_TYPE}} -Dkeyboard:STRING=${{inputs.keyboard}} -Dkeymap:STRING=${{inputs.keymap}} -S${{github.workspace}} -B${{github.workspace}}/build
- name: Build
# Build your program with the given configuration
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --target all --
- name: Get git version
run: echo "git_ver=$(git describe --always --dirty)" >> $GITHUB_ENV
- name: UF2 Firmware (${{inputs.keyboard}})
uses: actions/upload-artifact@v3
with:
name: ${{inputs.keyboard}}.uf2
path: ${{inputs.keyboard}}_upgrade_${{ env.git_ver }}.uf2
- name: Hex Firmware (${{inputs.keyboard}})
uses: actions/upload-artifact@v3
with:
name: ${{inputs.keyboard}}.hex
path: ${{inputs.keyboard}}_factory_${{ env.git_ver }}.hex
# - name: Test
# working-directory: ${{github.workspace}}/build
# # Execute tests defined by the CMake configuration.
# # See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
# run: ctest -C ${{env.BUILD_TYPE}}