Skip to content

changed back to cubeide for toolchain, and deleted old makefile #16

changed back to cubeide for toolchain, and deleted old makefile

changed back to cubeide for toolchain, and deleted old makefile #16

Workflow file for this run

name: Build STM32 Project
on:
push:
branches: ["master","vscode"]
pull_request:
branches: ["master", "vscode"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install ARM GCC toolchain
run: |
sudo apt-get update
sudo apt-get install -y gcc-arm-none-eabi
- name: Configure project with CMake
run: |
# If you need a toolchain file, add: -DCMAKE_TOOLCHAIN_FILE=path/to/your/toolchain.cmake
cmake -S . -B build -DCMAKE_BUILD_TYPE=Debug
- name: Build project with CMake
run: cmake --build build --config Debug