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.

38 lines
1.3 KiB

8 years ago
8 years ago
8 years ago
7 years ago
8 years ago
7 years ago
8 years ago
7 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. install:
  13. - if [ "$TRAVIS_OS_NAME" = 'osx' ]; then
  14. brew update && brew install socat;
  15. export PATH="/usr/local/opt/openssl@1.1/bin:$PATH" ;
  16. fi
  17. script:
  18. - echo "NGROK_TOKEN=$(echo "$NGROK_TOKEN" | wc -c)"
  19. - command -V openssl && openssl version
  20. - if [ "$TRAVIS_OS_NAME" = "linux" ]; then curl -sSL $SHFMT_URL -o ~/shfmt && chmod +x ~/shfmt && ~/shfmt -l -w -i 2 . ; fi
  21. - if [ "$TRAVIS_OS_NAME" = "linux" ]; then git diff --exit-code && echo "shfmt OK" ; fi
  22. - if [ "$TRAVIS_OS_NAME" = "linux" ]; then shellcheck -V ; fi
  23. - if [ "$TRAVIS_OS_NAME" = "linux" ]; then shellcheck -e SC2181 **/*.sh && echo "shellcheck OK" ; fi
  24. - cd ..
  25. - git clone --depth 1 https://github.com/acmesh-official/acmetest.git && cp -r acme.sh acmetest/ && cd acmetest
  26. - if [ "$TRAVIS_OS_NAME" = "linux" -a "$NGROK_TOKEN" ]; then sudo TEST_LOCAL="$TEST_LOCAL" NGROK_TOKEN="$NGROK_TOKEN" ./rundocker.sh testplat ubuntu:latest ; fi
  27. - 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
  28. matrix:
  29. fast_finish: true