Update c-cpp.yml #14
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 gd32_emac_artnet_dmx_multi | |
run: | | |
cd gd32_emac_artnet_dmx_multi | |
make -f Makefile.GD32 clean | |
make -f Makefile.GD32 | |
cd - | |
- name: make gd32_emac_e131_dmx_multi | |
run: | | |
cd gd32_emac_e131_dmx_multi | |
make -f Makefile.GD32 clean | |
make -f Makefile.GD32 | |
cd - |