Scott Lahteine
6 years ago
28 changed files with 362 additions and 11 deletions
@ -0,0 +1,16 @@ |
|||||
|
#!/usr/bin/env bash |
||||
|
# |
||||
|
# Build tests for STM32F1 ARMED |
||||
|
# |
||||
|
|
||||
|
# exit on first failure |
||||
|
set -e |
||||
|
|
||||
|
# |
||||
|
# Build with the default configurations |
||||
|
# |
||||
|
use_example_configs ArmEd |
||||
|
exec_test $1 $2 "ArmEd Example Configuration" |
||||
|
|
||||
|
# clean up |
||||
|
restore_configs |
@ -0,0 +1,17 @@ |
|||||
|
#!/usr/bin/env bash |
||||
|
# |
||||
|
# Build tests for STM32F1 Bigtreetech |
||||
|
# |
||||
|
|
||||
|
# exit on first failure |
||||
|
set -e |
||||
|
|
||||
|
# |
||||
|
# Build with the default configurations |
||||
|
# |
||||
|
restore_configs |
||||
|
opt_set MOTHERBOARD BOARD_BIGTREE_SKR_E3_DIP |
||||
|
exec_test $1 $2 "Default Configuration" |
||||
|
|
||||
|
# clean up |
||||
|
restore_configs |
@ -0,0 +1,18 @@ |
|||||
|
#!/usr/bin/env bash |
||||
|
# |
||||
|
# Build tests for STM32F4 BigTree_SKR_Pro |
||||
|
# |
||||
|
|
||||
|
# exit on first failure |
||||
|
set -e |
||||
|
|
||||
|
# |
||||
|
# Build with the default configurations |
||||
|
# |
||||
|
restore_configs |
||||
|
opt_set MOTHERBOARD BOARD_BIGTREE_SKR_PRO_V1_1 |
||||
|
opt_set SERIAL_PORT 1 |
||||
|
exec_test $1 $2 "Default Configuration" |
||||
|
|
||||
|
# clean up |
||||
|
restore_configs |
@ -0,0 +1,16 @@ |
|||||
|
#!/usr/bin/env bash |
||||
|
# |
||||
|
# Build tests for STM32F4 disco_f407vg |
||||
|
# |
||||
|
|
||||
|
# exit on first failure |
||||
|
set -e |
||||
|
|
||||
|
# |
||||
|
# Build with the default configurations |
||||
|
# |
||||
|
use_example_configs STM32/STM32F4 |
||||
|
exec_test $1 $2 "STM32F4 Default Configuration" |
||||
|
|
||||
|
# clean up |
||||
|
restore_configs |
@ -0,0 +1,18 @@ |
|||||
|
#!/usr/bin/env bash |
||||
|
# |
||||
|
# Build tests for STM32F7 |
||||
|
# |
||||
|
|
||||
|
# exit on first failure |
||||
|
set -e |
||||
|
|
||||
|
# |
||||
|
# Build with the default configurations |
||||
|
# |
||||
|
restore_configs |
||||
|
opt_set MOTHERBOARD BOARD_REMRAM_V1 |
||||
|
opt_set SERIAL_PORT 1 |
||||
|
exec_test $1 $2 "Default Configuration" |
||||
|
|
||||
|
# clean up |
||||
|
restore_configs |
@ -0,0 +1,17 @@ |
|||||
|
#!/usr/bin/env bash |
||||
|
# |
||||
|
# Build tests for AT90USB1286 ARMED |
||||
|
# |
||||
|
|
||||
|
# exit on first failure |
||||
|
set -e |
||||
|
|
||||
|
# |
||||
|
# Build with the default configurations |
||||
|
# |
||||
|
restore_configs |
||||
|
opt_set MOTHERBOARD BOARD_BRAINWAVE_PRO |
||||
|
exec_test $1 $2 "Default Configuration" |
||||
|
|
||||
|
# clean up |
||||
|
restore_configs |
@ -0,0 +1,17 @@ |
|||||
|
#!/usr/bin/env bash |
||||
|
# |
||||
|
# Build tests for AT90USB1286 ARMED |
||||
|
# |
||||
|
|
||||
|
# exit on first failure |
||||
|
set -e |
||||
|
|
||||
|
# |
||||
|
# Build with the default configurations |
||||
|
# |
||||
|
restore_configs |
||||
|
opt_set MOTHERBOARD BOARD_PRINTRBOARD |
||||
|
exec_test $1 $2 "Default Configuration" |
||||
|
|
||||
|
# clean up |
||||
|
restore_configs |
@ -0,0 +1,16 @@ |
|||||
|
#!/usr/bin/env bash |
||||
|
# |
||||
|
# Build tests for STM32F1 FYSETC |
||||
|
# |
||||
|
|
||||
|
# exit on first failure |
||||
|
set -e |
||||
|
|
||||
|
# |
||||
|
# Build with the default configurations |
||||
|
# |
||||
|
use_example_configs "FYSETC/Cheetah 1.2/base" |
||||
|
exec_test $1 $2 "Cheetah 1.2 Configuration" |
||||
|
|
||||
|
# clean up |
||||
|
restore_configs |
@ -0,0 +1,17 @@ |
|||||
|
#!/usr/bin/env bash |
||||
|
# |
||||
|
# Build tests for AVR ATmega FYSETC F6 1.3 |
||||
|
# |
||||
|
|
||||
|
# exit on first failure |
||||
|
set -e |
||||
|
|
||||
|
# |
||||
|
# Build with the default configurations |
||||
|
# |
||||
|
restore_configs |
||||
|
opt_set MOTHERBOARD BOARD_FYSETC_F6_13 |
||||
|
exec_test $1 $2 "Default Configuration" |
||||
|
|
||||
|
# clean up |
||||
|
restore_configs |
@ -0,0 +1,16 @@ |
|||||
|
#!/usr/bin/env bash |
||||
|
# |
||||
|
# Build tests for STM32F103ZE JGAurora A5S A1 |
||||
|
# |
||||
|
|
||||
|
# exit on first failure |
||||
|
set -e |
||||
|
|
||||
|
# |
||||
|
# Build with the default configurations |
||||
|
# |
||||
|
use_example_configs JGAurora/A5S |
||||
|
exec_test $1 $2 "JGAurora/A5S Configuration" |
||||
|
|
||||
|
# clean up |
||||
|
restore_configs |
@ -0,0 +1,13 @@ |
|||||
|
#!/usr/bin/env bash |
||||
|
# |
||||
|
# Build tests for STM32F1 malyanM200 |
||||
|
# |
||||
|
|
||||
|
# exit on first failure |
||||
|
set -e |
||||
|
|
||||
|
use_example_configs Malyan/M200 |
||||
|
exec_test $1 $2 "Default Configuration" |
||||
|
|
||||
|
# cleanup |
||||
|
restore_configs |
@ -0,0 +1,16 @@ |
|||||
|
#!/usr/bin/env bash |
||||
|
# |
||||
|
# Build tests for AVR ATmega1280 |
||||
|
# |
||||
|
|
||||
|
# exit on first failure |
||||
|
set -e |
||||
|
|
||||
|
# |
||||
|
# Build with the default configurations |
||||
|
# |
||||
|
restore_configs |
||||
|
exec_test $1 $2 "Default Configuration" |
||||
|
|
||||
|
# clean up |
||||
|
restore_configs |
@ -0,0 +1,13 @@ |
|||||
|
#!/usr/bin/env bash |
||||
|
# |
||||
|
# Build tests for STM32F1 genericSTM32F103ZE |
||||
|
# |
||||
|
|
||||
|
# exit on first failure |
||||
|
set -e |
||||
|
|
||||
|
use_example_configs Mks/Robin |
||||
|
exec_test $1 $2 "Default Configuration" |
||||
|
|
||||
|
# cleanup |
||||
|
restore_configs |
@ -0,0 +1,17 @@ |
|||||
|
#!/usr/bin/env bash |
||||
|
# |
||||
|
# Build tests for STM32F1 genericSTM32F103RC |
||||
|
# |
||||
|
|
||||
|
# exit on first failure |
||||
|
set -e |
||||
|
|
||||
|
use_example_configs Mks/Robin |
||||
|
opt_set MOTHERBOARD BOARD_MKS_ROBIN_LITE |
||||
|
opt_set EXTRUDERS 1 |
||||
|
opt_set TEMP_SENSOR_1 0 |
||||
|
opt_disable FSMC_GRAPHICAL_TFT |
||||
|
exec_test $1 $2 "Default Configuration" |
||||
|
|
||||
|
# cleanup |
||||
|
restore_configs |
@ -0,0 +1,16 @@ |
|||||
|
#!/usr/bin/env bash |
||||
|
# |
||||
|
# Build tests for STM32F1 genericSTM32F103VE |
||||
|
# |
||||
|
|
||||
|
# exit on first failure |
||||
|
set -e |
||||
|
|
||||
|
use_example_configs Mks/Robin |
||||
|
opt_set MOTHERBOARD BOARD_MKS_ROBIN_MINI |
||||
|
opt_set EXTRUDERS 1 |
||||
|
opt_set TEMP_SENSOR_1 0 |
||||
|
exec_test $1 $2 "Default Configuration" |
||||
|
|
||||
|
# cleanup |
||||
|
restore_configs |
@ -0,0 +1,14 @@ |
|||||
|
#!/usr/bin/env bash |
||||
|
# |
||||
|
# Build tests for STM32F1 genericSTM32F103VE |
||||
|
# |
||||
|
|
||||
|
# exit on first failure |
||||
|
set -e |
||||
|
|
||||
|
use_example_configs Mks/Robin |
||||
|
opt_set MOTHERBOARD BOARD_MKS_ROBIN_NANO |
||||
|
exec_test $1 $2 "Default Configuration" |
||||
|
|
||||
|
# cleanup |
||||
|
restore_configs |
@ -0,0 +1,21 @@ |
|||||
|
#!/usr/bin/env bash |
||||
|
# |
||||
|
# Build tests for AVR ATmega2560 RAMBo |
||||
|
# |
||||
|
|
||||
|
# exit on first failure |
||||
|
set -e |
||||
|
|
||||
|
# |
||||
|
# Build with the default configurations |
||||
|
# |
||||
|
restore_configs |
||||
|
opt_set MOTHERBOARD BOARD_EINSY_RAMBO |
||||
|
opt_set X_DRIVER_TYPE TMC2130 |
||||
|
opt_set Y_DRIVER_TYPE TMC2130 |
||||
|
opt_set Z_DRIVER_TYPE TMC2130 |
||||
|
opt_set E0_DRIVER_TYPE TMC2130 |
||||
|
exec_test $1 $2 "Default Configuration" |
||||
|
|
||||
|
# clean up |
||||
|
restore_configs |
@ -0,0 +1,17 @@ |
|||||
|
#!/usr/bin/env bash |
||||
|
# |
||||
|
# Build tests for AVR ATmega 1284p |
||||
|
# |
||||
|
|
||||
|
# exit on first failure |
||||
|
set -e |
||||
|
|
||||
|
# |
||||
|
# Build with the default configurations |
||||
|
# |
||||
|
restore_configs |
||||
|
opt_set MOTHERBOARD BOARD_SANGUINOLOLU_12 |
||||
|
exec_test $1 $2 "Default Configuration" |
||||
|
|
||||
|
# clean up |
||||
|
restore_configs |
@ -0,0 +1,17 @@ |
|||||
|
#!/usr/bin/env bash |
||||
|
# |
||||
|
# Build tests for AVR ATmega 644p |
||||
|
# |
||||
|
|
||||
|
# exit on first failure |
||||
|
set -e |
||||
|
|
||||
|
# |
||||
|
# Build with the default configurations |
||||
|
# |
||||
|
restore_configs |
||||
|
opt_set MOTHERBOARD BOARD_SANGUINOLOLU_12 |
||||
|
exec_test $1 $2 "Default Configuration" |
||||
|
|
||||
|
# clean up |
||||
|
restore_configs |
Loading…
Reference in new issue