travis-build.sh 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. #!/usr/bin/env bash
  2. LOCAL_TOOLS_DIR=$HOME/avr-tools
  3. MAKE_PACKAGE=make_4.1-6_amd64.deb
  4. WGET_FLAGS="--retry-connrefused --tries=3 --timeout=60 --continue"
  5. if [ -z "$TRAVIS_BUILD_DIR" ]; then
  6. echo "This script should be run by Travis-CI environment"
  7. echo "If you want to simulate Travis build, please set TRAVIS_BUILD_DIR"
  8. echo "envirinment variable to directory where your code lives"
  9. exit 1
  10. fi
  11. if [ -z "$1" ]; then
  12. echo "Arduino version required"
  13. exit 1
  14. fi
  15. if [ -z "$2" ]; then
  16. echo "Target required"
  17. exit 1
  18. fi
  19. # oownload and unpack package
  20. function download_and_unpack()
  21. {
  22. cd $LOCAL_TOOLS_DIR
  23. # check if tools are already in place
  24. if [ -d arduino-$1/hardware/tools/avr ]; then
  25. echo "Arduino version $1 already downloaded and extracted, skipping"
  26. return
  27. fi
  28. echo "Downloading Arduino version $1"
  29. # default package extension
  30. local arduExt="tar.xz"
  31. # for packages in version <1.6 extension is .tgz
  32. local regex="1\.[05]"
  33. if [[ "$1" =~ $regex ]]; then arduExt="tgz"; fi
  34. # download package
  35. wget $WGET_FLAGS "http://downloads.arduino.cc/arduino-$1-linux64.$arduExt"
  36. if [ $? -ne 0 ]; then
  37. echo "ERROR: Can't download Arduino"
  38. rm arduino-$1-linux64.$arduExt*
  39. exit 1
  40. fi
  41. # try to check md5sum, but Arduino provide only checksums for version 1.6 and greater
  42. wget $WGET_FLAGS https://downloads.arduino.cc/arduino-$1.md5sum.txt
  43. if [ $? -eq -0 ]; then
  44. cat arduino-$1.md5sum.txt|grep "linux64"|md5sum -c
  45. if [ $? -ne 0 ]; then
  46. echo "ERROR: md5sum for downloaded Arduino doesn't match"
  47. rm arduino-$1.md5sum.txt*
  48. exit 1
  49. fi
  50. rm arduino-$1.md5sum.txt*
  51. fi
  52. # extract only avr-gcc
  53. tar xf arduino-$1-linux64.$arduExt --wildcards '*/hardware/tools/avr/'
  54. # clean up
  55. rm arduino-$1-linux64.$arduExt*
  56. }
  57. function get_make4()
  58. {
  59. cd $LOCAL_TOOLS_DIR
  60. # check for existence
  61. if [ -x usr/bin/make ]; then
  62. echo "Make already in place, skipping"
  63. return
  64. fi
  65. # download
  66. wget http://archive.ubuntu.com/ubuntu/pool/main/m/make-dfsg/$MAKE_PACKAGE
  67. if [ $? -ne 0 ]; then
  68. echo "ERROR: Can't download make4"
  69. exit 1
  70. fi
  71. # unpack
  72. dpkg-deb -x $MAKE_PACKAGE $LOCAL_TOOLS_DIR
  73. # clean up
  74. rm ${MAKE_PACKAGE}*
  75. }
  76. # make directory for tools
  77. mkdir -p $LOCAL_TOOLS_DIR
  78. # get new make as Optiboot requires version >4.0
  79. get_make4
  80. # download specific Arduino version
  81. download_and_unpack $1
  82. # set search path
  83. PATH=$LOCAL_TOOLS_DIR/usr/bin:$PATH:$LOCAL_TOOLS_DIR/arduino-$1/hardware/tools/avr/bin
  84. cd $TRAVIS_BUILD_DIR/optiboot/bootloaders/optiboot
  85. make --version
  86. make clean
  87. make $2