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.

30 lines
928 B

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. env:
  4. global:
  5. - SHFMT_URL=https://github.com/mvdan/sh/releases/download/v0.4.0/shfmt_v0.4.0_linux_amd64
  6. addons:
  7. apt:
  8. sources:
  9. - debian-sid # Grab shellcheck from the Debian repo (o_O)
  10. packages:
  11. - shellcheck
  12. script:
  13. - curl -sSL $SHFMT_URL -o ~/shfmt
  14. - chmod +x ~/shfmt
  15. - shellcheck -V
  16. - shellcheck -e SC2021,SC2126,SC2034 **/*.sh && echo "shellcheck OK"
  17. - ~/shfmt -l -w -i 2 . && echo "shfmt OK" || git diff --exit-code || (echo "Run shfmt to fix the formatting issues" && false)
  18. - cd ..
  19. - curl -sSL https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-amd64.zip -o ngrok-stable-linux-amd64.zip && unzip ngrok-stable-linux-amd64.zip && export NGROK_BIN="$(pwd)/ngrok"
  20. - git clone https://github.com/Neilpang/acmetest.git && cp -r acme.sh acmetest/ && cd acmetest
  21. - sudo ./letest.sh
  22. matrix:
  23. fast_finish: true