You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

51 lines
1.7 KiB

8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
  1. language: shell
  2. sudo: required
  3. os:
  4. - linux
  5. - osx
  6. env:
  7. global:
  8. - SHFMT_URL=https://github.com/mvdan/sh/releases/download/v0.4.0/shfmt_v0.4.0_linux_amd64
  9. addons:
  10. apt:
  11. sources:
  12. - debian-sid # Grab shellcheck from the Debian repo (o_O)
  13. packages:
  14. - shellcheck
  15. install:
  16. - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
  17. brew update && brew install openssl;
  18. brew info openssl;
  19. ln -s /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib /usr/local/lib/;
  20. ln -s /usr/local/opt/openssl/lib/libssl.1.0.0.dylib /usr/local/lib/;
  21. ln -s /usr/local/Cellar/openssl/1.0.2j/bin/openssl openssl;
  22. _old_path="$PATH";
  23. export PATH="";
  24. openssl version 2>&1 || true;
  25. export PATH="$_old_path";
  26. fi
  27. script:
  28. - echo "TEST_LOCAL=$TEST_LOCAL"
  29. - echo "NGROK_TOKEN=$(echo "$NGROK_TOKEN" | wc -c)"
  30. - which openssl && openssl version
  31. - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then curl -sSL $SHFMT_URL -o ~/shfmt ; fi
  32. - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then chmod +x ~/shfmt ; fi
  33. - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then ~/shfmt -l -w -i 2 . ; fi
  34. - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then git diff --exit-code && echo "shfmt OK" ; fi
  35. - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then shellcheck -V ; fi
  36. - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then shellcheck -e SC2021,SC2126,SC2034 **/*.sh && echo "shellcheck OK" ; fi
  37. - cd ..
  38. - git clone https://github.com/Neilpang/acmetest.git && cp -r acme.sh acmetest/ && cd acmetest
  39. - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo NGROK_TOKEN="$NGROK_TOKEN" ./letest.sh ; fi
  40. - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then sudo NGROK_TOKEN="$NGROK_TOKEN_OSX" ./letest.sh ; fi
  41. matrix:
  42. fast_finish: true