Skip to content

Refactor hal -> board and add stack debug init #42

Refactor hal -> board and add stack debug init

Refactor hal -> board and add stack debug init #42

Workflow file for this run

name: C/C++ CI
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install arm-none-eabi
run: sudo apt install gcc-arm-none-eabi
- name: make bootloader-tftp
run: |
cd bootloader-tftp
make -f Makefile.GD32 clean
make -f Makefile.GD32
cd -