Revert "add toolchain cache" #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |