forked from mriscoc/Ender3V2S1
-
-
Notifications
You must be signed in to change notification settings - Fork 18
211 lines (179 loc) · 4.56 KB
/
ci-build-tests.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
#
# ci-build-tests.yml
# Do test builds to catch compile errors
#
name: CI - Build Tests
on:
pull_request:
branches:
- 2024-December
paths-ignore:
- configurations/**
- display assets/**
- data/**
- docs/**
- docker/**
- slicer scripts/**
- test/**
- themes/**
- Marlin/tests/**
- '**/*.md'
push:
branches:
- 2024-December
paths-ignore:
- configurations/**
- display assets/**
- data/**
- docs/**
- docker/**
- slicer scripts/**
- test/**
- themes/**
- Marlin/tests/**
- '**/*.md'
jobs:
test_builds:
name: Build Test
if: github.repository == 'classicrocker883/MRiscoCProUI'
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
test-platform:
# RP2040
# - SKR_Pico
# Native
# - linux_native
# - simulator_linux_release
# AVR
# - mega2560
# - mega1280
# - at90usb1286_dfu
# AVR Extended
# - FYSETC_F6
# - melzi_optiboot
# - rambo
# - sanguino1284p
# - sanguino644p
# SAM3X8E
# - DUE
# - DUE_archim
# SAMD21
# - SAMD51_grandcentral_m4
# - SAMD21_minitronics20
# ESP32
# - esp32
# - mks_tinybee
# Teensy 2
#- at90usb1286_cdc
# Teensy MK20DX256
# - teensy31
# Teensy MK64FX512, MK66FX1M0
# - teensy35
# Teensy IMXRT1062DVx6A
# - teensy41
# STM32F0
# - malyan_M300
# - STM32F070CB_malyan
# - STM32F070RB_malyan
# STM32F1
# - chitu_f103
# - mks_robin
# - mks_robin_nano_v1v2
# - PANDA_PI_V29
- STM32F103RC_btt
# - STM32F103RC_fysetc
# - STM32F103RE_btt
# - STM32F103RE_btt_USB
- STM32F103RE_creality
- STM32F103RC_creality
# - STM32F103VE_longer
# - mks_robin_mini
# - mks_robin_nano_v1_3_f4_usbmod
# - mks_robin_nano_v1v2_usbmod
# - STM32F103CB_malyan
# - STM32F103RC_btt_USB
# - STM32F103RE
# STM32F4
# - ARMED
# - BTT_BTT002
# - BTT_GTR_V1_0
# - BTT_SKR_PRO
# - FLYF407ZG
# - FYSETC_S6
# - LERDGEK
# - LERDGEX
# - mks_robin_pro2
# - Opulo_Lumen_REV3
# - rumba32
- STM32F401RC_btt
- STM32F401RC_creality
- STM32F401RE_freeruns
# - STM32F407VE_black
# - I3DBEEZ9_V1
# STM32F7
# - NUCLEO_F767ZI
# - REMRAM_V1
# STM32H7
# - BTT_SKR_SE_BX
# - STM32H743VI_btt
# STM32F1 (Maple)
# - jgaurora_a5s_a1_maple
# - mks_robin_lite_maple
# - mks_robin_pro_maple
# - STM32F103RC_btt_USB_maple
# - STM32F103RC_fysetc_maple
# - STM32F103RC_meeb_maple
# - STM32F103VE_longer_maple
# - STM32F103VE_ZM3E4V2_USB_maple
# - mks_robin_maple
# - mks_robin_nano_v1v2_maple
# - STM32F103RC_btt_maple
# - STM32F103RE_creality_maple
# - STM32F103RC_creality_maple
# - GD32F303RC_creality_maple
# - GD32F303RC_creality_maple
- GD32F103RC_voxelab_maple
- N32F103RC_voxelab_maple
# - N32G455RE_voxelab_maple
# STM32G0
- STM32G0B1RE_btt
# LPC176x - Lengthy tests
# - LPC1768
# - LPC1769
steps:
- name: Check out the PR
uses: actions/checkout@main
- name: Cache pip
uses: actions/cache@main
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Cache PlatformIO
uses: actions/cache@main
with:
path: ~/.platformio
key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
- name: Select Python 3.11
uses: actions/setup-python@main
with:
python-version: '3.11'
architecture: 'x64'
- name: Install PlatformIO
run: |
pip install -U pip wheel platformio
pio upgrade --dev
pio pkg update --global
- name: Install Simulator dependencies
run: |
sudo apt-get update
sudo apt-get install build-essential
sudo apt-get install libsdl2-dev
sudo apt-get install libsdl2-net-dev
sudo apt-get install libglm-dev
- name: Run ${{ matrix.test-platform }} Tests
run: |
make tests-single-ci TEST_TARGET=${{ matrix.test-platform }}