Skip to content

added basic barrel heat control #179

added basic barrel heat control

added basic barrel heat control #179

Workflow file for this run

name: Build Project
on:
push:
paths:
- 'src/**'
- 'lib/**'
pull_request:
paths:
- 'src/**'
- 'lib/**'
jobs:
build:
name: Build
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
submodules: 'recursive' # Ensure submodules are checked out
- name: Set up MSYS2
uses: msys2/setup-msys2@v2
with:
update: true
install: mingw-w64-x86_64-arm-none-eabi-gcc make
- name: Build project
run: |
make -j24 V=1
shell: msys2 {0}