-
-
Notifications
You must be signed in to change notification settings - Fork 1
32 lines (28 loc) · 613 Bytes
/
Copy pathc-cpp.yml
File metadata and controls
32 lines (28 loc) · 613 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
name: C/C++ CI
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install arm-none-eabi
run: sudo apt install gcc-arm-none-eabi
- name: version
run: arm-none-eabi-g++ --version
- name: make bootloader-tftp
run: |
cd bootloader-tftp
make -f Makefile.GD32 clean
make -f Makefile.GD32
cd -