File tree Expand file tree Collapse file tree 4 files changed +55
-2
lines changed
Expand file tree Collapse file tree 4 files changed +55
-2
lines changed Original file line number Diff line number Diff line change 1+ name : Build AVR CI
2+
3+ on : [push]
4+
5+ jobs :
6+ build :
7+
8+ runs-on : ubuntu-latest
9+
10+ steps :
11+ - uses : actions/checkout@v2
12+ - name : Install C/C++ Toolchain
13+ run : |
14+ sudo apt-get update
15+ sudo apt-get -y install binutils
16+ sudo apt-get -y install make
17+ sudo apt-get -y install gcc-avr
18+ sudo apt-get -y install avr-libc
19+ sudo apt-get -y install cflow
20+ - name : Build scripts setup
21+ run : chmod +x examples/avr/basic_usage/tools/*
22+ - name : Build
23+ run : |
24+ cd examples/avr/basic_usage/build
25+ make clean
26+ make build
Original file line number Diff line number Diff line change 1+ name : Build Linux CI
2+
3+ on : [push]
4+
5+ jobs :
6+ build :
7+
8+ runs-on : ubuntu-latest
9+
10+ steps :
11+ - uses : actions/checkout@v2
12+ - name : Install C/C++ Toolchain
13+ run : |
14+ sudo apt-get update
15+ sudo apt-get -y install binutils
16+ sudo apt-get -y install make
17+ sudo apt-get -y install gcc
18+ sudo apt-get -y install g++
19+ sudo apt-get -y install libc6
20+ sudo apt-get -y install cflow
21+ - name : Build scripts setup
22+ run : chmod +x examples/linux/basic_usage/tools/*
23+ - name : Build
24+ run : |
25+ cd examples/linux/basic_usage/build
26+ make clean
27+ make build
Original file line number Diff line number Diff line change 1- name : PlatformIO Arduino CI
1+ name : Build PlatformIO Arduino CI
22
33on : [push]
44
Original file line number Diff line number Diff line change 1- name : PlatformIO ESP-IDF CI
1+ name : Build PlatformIO ESP-IDF CI
22
33on : [push]
44
You can’t perform that action at this time.
0 commit comments