forked from vanvught/GD32F303RC-DMX512-RDM
-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (31 loc) · 717 Bytes
/
c-cpp.yml
File metadata and controls
36 lines (31 loc) · 717 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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 -