travis-build.sh 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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"
  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 "Package $ver already downloaded and extracted, skipping"
  26. return
  27. fi
  28. echo "Downloading 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. exit 1
  39. fi
  40. # try to check md5sum, but Arduino provide only checksums for version 1.6 and greater
  41. wget $WGET_FLAGS https://downloads.arduino.cc/arduino-$1.md5sum.txt
  42. if [ $? -eq -0 ]; then
  43. cat arduino-$1.md5sum.txt|grep "linux64"|md5sum -c
  44. if [ $? -ne 0 ]; then
  45. echo "ERROR: md5sum for downloaded Arduino doesn't match"
  46. exit 1
  47. fi
  48. rm arduino-$1.md5sum.txt
  49. fi
  50. # extract only avr-gcc
  51. tar xf arduino-$1-linux64.$arduExt --wildcards '*/hardware/tools/avr/'
  52. # clean up
  53. rm arduino-$1-linux64.$arduExt
  54. }
  55. function get_make4()
  56. {
  57. cd $LOCAL_TOOLS_DIR
  58. # check for existence
  59. if [ -x usr/bin/make ]; then
  60. echo "Make already in place, skipping"
  61. return
  62. fi
  63. # download
  64. wget http://archive.ubuntu.com/ubuntu/pool/main/m/make-dfsg/$MAKE_PACKAGE
  65. if [ $? -ne 0 ]; then
  66. echo "ERROR: Can't download make4"
  67. exit 1
  68. fi
  69. # unpack
  70. dpkg-deb -x $MAKE_PACKAGE $LOCAL_TOOLS_DIR
  71. # clean up
  72. rm ${MAKE_PACKAGE}*
  73. }
  74. # make directory for tools
  75. mkdir -p $LOCAL_TOOLS_DIR
  76. # get new make as Optiboot requires version >4.0
  77. get_make4
  78. # download specific Arduino version
  79. download_and_unpack $1
  80. # set search path
  81. PATH=$LOCAL_TOOLS_DIR/usr/bin:$PATH:$LOCAL_TOOLS_DIR/arduino-$1/hardware/tools/avr/bin
  82. cd $TRAVIS_BUILD_DIR/optiboot/bootloaders/optiboot
  83. make --version
  84. make clean
  85. make $2