forked from MarlinFirmware/Marlin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0f4d3e1
commit 9449201
Showing
28 changed files
with
362 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/usr/bin/env bash | ||
# | ||
# Build tests for AVR | ||
# Build tests for AVR ATmega2560 | ||
# | ||
|
||
# exit on first failure | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
Oops, something went wrong.