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.

47 lines
1.5 KiB

8 years ago
8 years ago
8 years ago
7 years ago
8 years ago
7 years ago
8 years ago
8 years ago
8 years ago
8 years ago
  1. language: shell
  2. sudo: required
  3. dist: trusty
  4. os:
  5. - linux
  6. - osx
  7. services:
  8. - docker
  9. env:
  10. global:
  11. - SHFMT_URL=https://github.com/mvdan/sh/releases/download/v0.4.0/shfmt_v0.4.0_linux_amd64
  12. addons:
  13. apt:
  14. sources:
  15. - debian-sid # Grab shellcheck from the Debian repo (o_O)
  16. packages:
  17. - shellcheck
  18. install:
  19. - if [ "$TRAVIS_OS_NAME" = 'osx' ]; then
  20. brew update && brew install socat;
  21. export PATH="/usr/local/opt/openssl@1.1/bin:$PATH" ;
  22. fi
  23. script:
  24. - echo "NGROK_TOKEN=$(echo "$NGROK_TOKEN" | wc -c)"
  25. - command -V openssl && openssl version
  26. - if [ "$TRAVIS_OS_NAME" = "linux" ]; then curl -sSL $SHFMT_URL -o ~/shfmt ; fi
  27. - if [ "$TRAVIS_OS_NAME" = "linux" ]; then chmod +x ~/shfmt ; fi
  28. - if [ "$TRAVIS_OS_NAME" = "linux" ]; then ~/shfmt -l -w -i 2 . ; fi
  29. - if [ "$TRAVIS_OS_NAME" = "linux" ]; then git diff --exit-code && echo "shfmt OK" ; fi
  30. - if [ "$TRAVIS_OS_NAME" = "linux" ]; then shellcheck -V ; fi
  31. - if [ "$TRAVIS_OS_NAME" = "linux" ]; then shellcheck -e SC2181 **/*.sh && echo "shellcheck OK" ; fi
  32. - cd ..
  33. - git clone https://github.com/Neilpang/acmetest.git && cp -r acme.sh acmetest/ && cd acmetest
  34. - if [ "$TRAVIS_OS_NAME" = "linux" -a "$NGROK_TOKEN" ]; then sudo TEST_LOCAL="$TEST_LOCAL" NGROK_TOKEN="$NGROK_TOKEN" ./rundocker.sh testplat ubuntu:latest ; fi
  35. - if [ "$TRAVIS_OS_NAME" = "osx" -a "$NGROK_TOKEN" ]; then sudo TEST_LOCAL="$TEST_LOCAL" NGROK_TOKEN="$NGROK_TOKEN" ACME_OPENSSL_BIN="$ACME_OPENSSL_BIN" ./letest.sh ; fi
  36. matrix:
  37. fast_finish: true