Skip to content

Revert "add toolchain cache" #6

Revert "add toolchain cache"

Revert "add toolchain cache" #6

Workflow file for this run

name: Build Project
on:
push:
pull_request:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: "recursive" # Ensure submodules are checked out
- name: Install ARM GCC Toolchain
run: |
sudo apt-get update
sudo apt-get install -y gcc-arm-none-eabi make
- name: Build project
run: |
make -j$(nproc) V=1
shell: bash