mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2024-11-30 07:17:59 +00:00
17 lines
228 B
Bash
Executable File
17 lines
228 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Build tests for Simulator on Linux
|
|
#
|
|
|
|
# exit on first failure
|
|
set -e
|
|
|
|
#
|
|
# Build with the default configurations
|
|
#
|
|
use_example_configs Simulator
|
|
exec_test $1 $2 "Simulator" "$3"
|
|
|
|
# cleanup
|
|
restore_configs
|