-
-
Notifications
You must be signed in to change notification settings - Fork 1
53 lines (49 loc) · 1.19 KB
/
c-cpp.yml
File metadata and controls
53 lines (49 loc) · 1.19 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
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
run: |
cd gd32_emac_artnet_dmx
make -f Makefile.GD32 clean
make -f Makefile.GD32
cd -
- name: make gd32_emac_artnet_pixel
run: |
cd gd32_emac_artnet_pixel
make -f Makefile.GD32 clean
make -f Makefile.GD32
cd -
- name: make gd32_emac_e131_dmx
run: |
cd gd32_emac_e131_dmx
make -f Makefile.GD32 clean
make -f Makefile.GD32
cd -
- name: make gd32_emac_e131_pixel
run: |
cd gd32_emac_e131_pixel
make -f Makefile.GD32 clean
make -f Makefile.GD32
cd -
- name: make gd32_osc_e131_dmx
run: |
cd gd32_emac_osc_dmx
make -f Makefile.GD32 clean
make -f Makefile.GD32
cd -
- name: make gd32_emac_osc_pixel
run: |
cd gd32_emac_osc_pixel
make -f Makefile.GD32 clean
make -f Makefile.GD32
cd -