.travis.yml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. language: c
  2. compiler:
  3. - gcc
  4. - clang
  5. os:
  6. - linux
  7. # - osx
  8. # use new build environment (docker)
  9. dist: trusty
  10. sudo: required
  11. env:
  12. global:
  13. - secure: nSunY54Wp5HkQCHHbKwlwpbaKyqRVIu/0EnhaoJSwhM1wqerQV/E5d/2JelO9/tZgbungAO7wk/fjutRMVc7d378RTIPwS8vHpvZfEoGhCFsLoTOlqESzsZFBup2H5t1lpQ23jRHDOxlLdJy2lz5U+zd1YnYgDXqdDFjegsIYdo=
  14. - secure: ehswgymGXPM3UINhOOnfSByMnrRNTixeT2vEV+z3kXy3WHew/O1yt9GxaYGrUhJPg4+5chAQgjYmezO1x3/CUKFgeHQUmVTFWEzfy1kL1JVjO+ufYyJDnbY+x3OmyNmMYcef2J5MAuUS2C1KFvIxtLsljVK+gpe4LcylkCIF/3Y=
  15. matrix:
  16. # Do both, compile with static code analysis and without
  17. - ANALYZE=false
  18. - ANALYZE=true
  19. matrix:
  20. exclude:
  21. # This excludes OSX GCC builds.
  22. - os: osx
  23. compiler: gcc
  24. - os: osx
  25. env: ANALYZE=true
  26. addons:
  27. apt:
  28. sources:
  29. # see https://github.com/travis-ci/apt-source-whitelist/blob/master/ubuntu.json
  30. - kalakris-cmake
  31. packages:
  32. - binutils-mingw-w64-i686
  33. - build-essential
  34. - clang
  35. - cmake
  36. - gcc-multilib
  37. - g++-multilib
  38. - valgrind
  39. - check
  40. - cppcheck
  41. - mingw-w64
  42. - g++-mingw-w64-x86-64
  43. - g++-mingw-w64-i686
  44. - libc6-dbg # for valgrind compilation
  45. - libsubunit-dev
  46. - libx11-dev
  47. - wget
  48. - xutils-dev
  49. - zip
  50. - graphviz
  51. - texlive-latex-recommended
  52. - texlive-latex-extra
  53. - texlive-fonts-recommended
  54. coverity_scan:
  55. project:
  56. name: acplt/open62541
  57. description: Open-source OPC UA
  58. notification_email: null@plt.rwth-aachen.de
  59. build_command_prepend: mkdir build && cd build && cmake ..
  60. build_command: make
  61. branch_pattern: coverity_scan
  62. cache:
  63. pip: true
  64. apt: true
  65. directories:
  66. - $HOME/install
  67. before_install:
  68. - sh ./tools/travis/travis_notifications.sh
  69. - if [ ${TRAVIS_OS_NAME} == "linux" ]; then sh ./tools/travis/travis_linux_before_install.sh; fi
  70. - if [ ${TRAVIS_OS_NAME} == "osx" ]; then sh ./tools/travis/travis_osx_before_install.sh; fi
  71. script:
  72. - if [ ${TRAVIS_OS_NAME} == "linux" ]; then sh ./tools/travis/travis_linux_script.sh; fi
  73. - if [ ${TRAVIS_OS_NAME} == "osx" ]; then sh ./tools/travis/travis_osx_script.sh; fi
  74. after_success:
  75. - if [ ${TRAVIS_OS_NAME} == "linux" ]; then sh ./tools/travis/travis_linux_after_success.sh; fi
  76. before_deploy:
  77. - rm build -rf && mkdir -p build && cd build
  78. - echo "Cross compile release build for Raspberry Pi"
  79. - cd ~
  80. - git clone https://github.com/raspberrypi/tools
  81. - cd -
  82. - export PATH=$PATH:~/tools/arm-bcm2708/gcc-linaro-arm-linux-gnueabihf-raspbian-x64/bin/
  83. - cmake -DCMAKE_TOOLCHAIN_FILE=../tools/cmake/Toolchain-rpi64.cmake -DUA_ENABLE_AMALGAMATION=ON -DCMAKE_BUILD_TYPE=Release -DUA_BUILD_EXAMPLES=ON ..
  84. - make
  85. - tar -pczf open62541-raspberrypi.tar.gz ../doc ../../server_cert.der ../LICENSE ../AUTHORS ../README.md examples/server examples/client libopen62541.a open62541.h open62541.c
  86. - cp open62541-raspberrypi.tar.gz ..
  87. - cd ..
  88. deploy:
  89. provider: releases
  90. api_key:
  91. secure: PKCoA7MBRtHloIbNF4Qj5LQyCafjekfVeFXlMBd9KmC0ynNuef+D7nn38f/jo25/b0Ii7r+hgslkQPezbKyEqo2zcCB8Pn8TWau2hbzKM/dUCPoN90HVaQcRjUi8P2Y+QkouwyPWSujBL35/X5QiAntRotCSbZx4fkyiN8cU95o=
  92. file:
  93. - open62541-win32.zip
  94. - open62541-win64.zip
  95. - open62541-linux32.tar.gz
  96. - open62541-linux64.tar.gz
  97. - open62541-raspberrypi.tar.gz
  98. - open62541.c
  99. - open62541.h
  100. skip_cleanup: true
  101. on:
  102. repo: open62541/open62541
  103. tags: true
  104. condition: $CC = gcc && $ANALYZE = false
  105. notifications:
  106. irc:
  107. channels:
  108. - "chat.freenode.net#open62541"
  109. on_success: ${IRC_NOTIFY_SUCCESS} # default: change, variable defined in ./tools/travis/travis_notification.sh
  110. on_failure: ${IRC_NOTIFY_FAILURE} # default: always, variable defined in ./tools/travis/travis_notification.sh
  111. use_notice: true
  112. skip_join: true