diff options
author | Daniel Friesel <daniel.friesel@uos.de> | 2021-02-24 10:54:19 +0100 |
---|---|---|
committer | Daniel Friesel <daniel.friesel@uos.de> | 2021-02-24 10:54:19 +0100 |
commit | f4d0c2e22f6cdea9d708b5e69ed0748b01a99cf8 (patch) | |
tree | 35a8d322b70427cda0040975bb2c6b8a5f1974e9 /tests/build-arduino-nano | |
parent | 38f0e84d3b5da56c1441f2f779246ccf7b23d5c4 (diff) |
Add more build tests
Diffstat (limited to 'tests/build-arduino-nano')
-rwxr-xr-x | tests/build-arduino-nano | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/build-arduino-nano b/tests/build-arduino-nano new file mode 100755 index 0000000..20185e0 --- /dev/null +++ b/tests/build-arduino-nano @@ -0,0 +1,12 @@ +#!/bin/sh + +set -e + +apps="bme680-max44009-logger button-and-motion-logger + donothing i2cdetect ledblink mpu9250_motionlog + shell sysinfo timertest + waittest wetterstation ws2812b_dmap ws2812b_uart" + +for app in $apps; do + make -B arch=arduino-nano app=$app build/system.elf +done |