V2.0 #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: C/C++ CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
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 Board-tester | |
run: | | |
cd Board-tester | |
make -f Makefile.GD32 clean | |
make -f Makefile.GD32 | |
cd - | |
- name: make gd32_dmx_usb_pro | |
run: | | |
cd gd32_dmx_usb_pro | |
make -f Makefile.GD32 clean | |
make -f Makefile.GD32 | |
cd - | |
- name: make gd32_rdm_responder | |
run: | | |
cd gd32_rdm_responder | |
make -f Makefile.GD32 clean | |
make -f Makefile.GD32 | |
cd - | |