Skip to content

feat: makefile for openocd op #6

feat: makefile for openocd op

feat: makefile for openocd op #6

Workflow file for this run

name: build
on: [ push, pull_request ]
env:
BUILD_TYPE: Release
jobs:
build_STM32F407IGHx:
runs-on: ubuntu-latest
steps:
- name: arm-none-eabi-gcc GNU Arm Embedded Toolchain
uses: carlosperate/[email protected]
- name: Checkout
uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Configure CMake
run: cmake -DCMAKE_BUILD_TYPE:STRING=$BUILD_TYPE -B${{github.workspace}}/build -G "Unix Makefiles"
- name: Build
run: cmake --build ${{github.workspace}}/build --target ci