Skip to content

Sync with local development #54

Sync with local development

Sync with local development #54

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 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 -