mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2026-02-15 08:59:45 -07:00
17 lines
427 B
Bash
Executable file
17 lines
427 B
Bash
Executable file
#!/usr/bin/env bash
|
|
#
|
|
# Build tests for GD32F303RE_creality_mfl
|
|
#
|
|
|
|
# exit on first failure
|
|
set -e
|
|
|
|
restore_configs
|
|
opt_set MOTHERBOARD BOARD_CREALITY_V422_GD32_MFL SERIAL_PORT 0
|
|
opt_enable EEPROM_SETTINGS SDSUPPORT EMERGENCY_PARSER FAN_SOFT_PWM PINS_DEBUGGING
|
|
opt_add NO_CREALITY_422_DRIVER_WARNING
|
|
opt_add NO_AUTO_ASSIGN_WARNING
|
|
exec_test $1 $2 "Creality V4.2.2 MFL GD32 Default Configuration" "$3"
|
|
|
|
# cleanup
|
|
restore_configs
|