Fixed fonts.c files include issue #6
Workflow file for this run
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 project | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: arm-none-eabi-gcc | |
uses: carlosperate/[email protected] | |
with: | |
release: '10-2020-q4' # The arm-none-eabi-gcc release to use. | |
- name: Update submodules | |
run: git submodule update --init --recursive | |
- name: Configure | |
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release | |
- name: Build | |
run: cmake --build build | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: lv_stm32f769.bin | |
path: build/lv_stm32f769.bin |