-
Notifications
You must be signed in to change notification settings - Fork 447
87 lines (68 loc) · 3.3 KB
/
run-cl-arduino.yml
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
name: Run Ci Arduino
on:
push:
pull_request:
repository_dispatch:
types: [trigger-workflow]
jobs:
ci-arduino:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Checkout script repository
uses: actions/checkout@v4
with:
repository: Seeed-Studio/ci-arduino
path: ci
- name: Setup arduino cli
uses: arduino/[email protected]
- name: Create a depend.list file
run: |
# eg: echo "<repo>" >> depend.list
echo "arduino-libraries/SD" >> depend.list
echo "frankjoshua/rosserial_arduino_lib" >> depend.list
- name: Create a ignore.list file
run: |
# eg: echo "<path>,<fqbn>" >> ignore.list
# ROS library has some issue with std_msg, so we ignore them,waiting for the fix
echo "send_Blink_ROS,Seeeduino:samd:seeed_XIAO_m0" >> ignore.list
echo "send_Blink_ROS,Seeeduino:nrf52:xiaonRF52840" >> ignore.list
echo "send_Blink_ROS,Seeeduino:nrf52:xiaonRF52840Sense" >> ignore.list
echo "send_Blink_ROS,Seeeduino:renesas_uno:XIAO_RA4M1" >> ignore.list
echo "send_Blink_ROS,rp2040:rp2040:seeed_xiao_rp2040" >> ignore.list
echo "send_Blink_ROS,rp2040:rp2040:seeed_xiao_rp2350" >> ignore.list
echo "send_Blink_ROS,esp32:esp32:XIAO_ESP32C3" >> ignore.list
echo "send_Blink_ROS,esp32:esp32:XIAO_ESP32C6" >> ignore.list
echo "send_Blink_ROS,esp32:esp32:XIAO_ESP32S3" >> ignore.list
echo "receive_sleep,Seeeduino:samd:seeed_XIAO_m0" >> ignore.list
echo "receive_sleep,Seeeduino:nrf52:xiaonRF52840" >> ignore.list
echo "receive_sleep,Seeeduino:nrf52:xiaonRF52840Sense" >> ignore.list
echo "receive_sleep,Seeeduino:renesas_uno:XIAO_RA4M1" >> ignore.list
echo "receive_sleep,rp2040:rp2040:seeed_xiao_rp2040" >> ignore.list
echo "receive_sleep,rp2040:rp2040:seeed_xiao_rp2350" >> ignore.list
echo "receive_sleep,esp32:esp32:XIAO_ESP32C3" >> ignore.list
echo "receive_sleep,esp32:esp32:XIAO_ESP32C6" >> ignore.list
echo "receive_sleep,esp32:esp32:XIAO_ESP32S3" >> ignore.list
echo "send_sleep,Seeeduino:samd:seeed_XIAO_m0" >> ignore.list
echo "send_sleep,Seeeduino:nrf52:xiaonRF52840" >> ignore.list
echo "send_sleep,Seeeduino:nrf52:xiaonRF52840Sense" >> ignore.list
echo "send_sleep,Seeeduino:renesas_uno:XIAO_RA4M1" >> ignore.list
echo "send_sleep,rp2040:rp2040:seeed_xiao_rp2040" >> ignore.list
echo "send_sleep,rp2040:rp2040:seeed_xiao_rp2350" >> ignore.list
echo "send_sleep,esp32:esp32:XIAO_ESP32C3" >> ignore.list
echo "send_sleep,esp32:esp32:XIAO_ESP32C6" >> ignore.list
echo "send_sleep,esp32:esp32:XIAO_ESP32S3" >> ignore.list
- name: Build sketch
run: ./ci/tools/compile.sh
- name: Build result
run: |
cat build.log
if [ ${{ github.event_name }} == 'pull_request' ] && [ -f compile.failed ]; then
exit 1
fi
- name: Generate issue
if: ${{ github.event_name != 'pull_request' }}
run: ./ci/tools/issue.sh
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}