Serial number #24
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: Firmware release | |
on: | |
pull_request: | |
jobs: | |
firmware-build: | |
name: Firmware build | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
submodules: true | |
# - name: Installing platformio | |
# run: pip3 install -U platformio | |
# - name: Building a firmware for STM32 | |
# run: git submodule update --init --recursive && pio run | |
- name: Building a firmware for STM32 | |
run: | | |
set -e | |
docker compose build --no-cache --exit-code-from pio | |
docker compose up |