Travis release build changes (#450)

* Move the release build steps into separate shell scripts
* Remove builds that we don't need any more
  * Latest builds of er9x and erSkyTx both support MULTI_TELEMETRY so separate OpenTX / erSkyTx builds are no longer needed
  * Radio can switch telemetry inversion on or off automatically so STM32 inv / noinv builds are no longer needed
This commit is contained in:
Ben Lye
2020-10-11 12:52:05 +01:00
committed by GitHub
parent baf9a0f978
commit a633f46f4f
8 changed files with 227 additions and 240 deletions

View File

@@ -0,0 +1,12 @@
#!/usr/bin/env bash
exitcode=0;
printf "\n\e[33;1mBuilding multi-stm-xn297dump-usbdebug-v$MULTI_VERSION.bin\e[0m";
opt_disable $ALL_PROTOCOLS;
opt_add XN297DUMP_NRF24L01_INO;
buildMulti;
exitcode=$((exitcode+$?));
mv build/Multiprotocol.ino.bin ./binaries/multi-stm-xn297dump-usbdebug-v$MULTI_VERSION.bin;
exit $exitcode;