613b4105a2
Followup to #26265 Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
18 lines
332 B
Bash
Executable file
18 lines
332 B
Bash
Executable file
#!/usr/bin/env bash
|
|
#
|
|
# Build tests for STM32H743VI_btt
|
|
# Ender-5 Plus with SKR V3.0 (STM32H7)
|
|
#
|
|
|
|
# exit on first failure
|
|
set -e
|
|
|
|
#
|
|
# Build with the default configurations
|
|
#
|
|
use_example_configs "Creality/Ender-5 Plus/BigTreeTech SKR 3"
|
|
exec_test $1 $2 "Creality Ender-5 Plus with BigTreeTech SKR 3" "$3"
|
|
|
|
# clean up
|
|
restore_configs
|