Skip to content

Add workflow and add libopencm3 as submodule #2

Add workflow and add libopencm3 as submodule

Add workflow and add libopencm3 as submodule #2

Workflow file for this run

name: Build CI
on: [push, pull_request]
jobs:
makefile-build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v3
- name: Install Dependencies
run: sudo apt-get update && sudo apt-get install -y build-essential make arm-none-eabi-gcc binutils-arm-none-eabi libnewlib-arm-none-eabi
- name: Build
run: git submodule update --init && cd libopencm3 && make && cd ../ && mkdir build && cd build && cmake ../ && make