Build keyboard firmware #29
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
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}} |