.travis.yml 444 B

1234567891011121314151617181920212223242526272829303132333435
  1. git:
  2. depth: 10
  3. notifications:
  4. email: false
  5. before_install:
  6. - export BOTO_CONFIG=/dev/null
  7. language: node_js
  8. node_js:
  9. - "4"
  10. os:
  11. - linux
  12. - osx
  13. env:
  14. - TARGET_ARCH=x64
  15. osx_image: xcode7.3
  16. matrix:
  17. include:
  18. - os: linux
  19. env: TARGET_ARCH=arm
  20. - os: linux
  21. env: TARGET_ARCH=ia32
  22. - os: linux
  23. env: TARGET_ARCH=arm64
  24. allow_failures:
  25. - os: osx
  26. script: './script/cibuild'
  27. branches:
  28. only:
  29. - master