2017-01-05 14:32:26 +00:00
language : shell
2020-07-15 18:45:11 +00:00
dist : bionic
2017-01-05 14:32:26 +00:00
os :
- linux
- osx
2017-12-03 04:51:51 +00:00
services :
- docker
2017-01-05 14:32:26 +00:00
env :
global :
2020-08-18 14:22:03 +00:00
- SHFMT_URL=https://github.com/mvdan/sh/releases/download/v3.1.2/shfmt_v3.1.2_linux_amd64
2017-01-05 14:32:26 +00:00
install :
2017-01-13 14:31:10 +00:00
- if [ "$TRAVIS_OS_NAME" = 'osx' ]; then
2017-12-03 12:57:25 +00:00
brew update && brew install socat;
export PATH="/usr/local/opt/openssl@1.1/bin:$PATH" ;
2017-01-05 14:32:26 +00:00
fi
2017-12-03 12:57:25 +00:00
2017-01-05 14:32:26 +00:00
script :
- echo "NGROK_TOKEN=$(echo "$NGROK_TOKEN" | wc -c)"
2017-01-13 14:31:10 +00:00
- command -V openssl && openssl version
2018-04-20 15:32:42 +00:00
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then curl -sSL $SHFMT_URL -o ~/shfmt && chmod +x ~/shfmt && ~/shfmt -l -w -i 2 . ; fi
2017-01-13 14:31:10 +00:00
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then git diff --exit-code && echo "shfmt OK" ; fi
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then shellcheck -V ; fi
2017-07-08 01:20:12 +00:00
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then shellcheck -e SC2181 **/*.sh && echo "shellcheck OK" ; fi
2017-01-05 14:32:26 +00:00
- cd ..
2020-01-30 04:06:39 +00:00
- git clone --depth 1 https://github.com/acmesh-official/acmetest.git && cp -r acme.sh acmetest/ && cd acmetest
2017-12-03 04:51:51 +00:00
- if [ "$TRAVIS_OS_NAME" = "linux" -a "$NGROK_TOKEN" ]; then sudo TEST_LOCAL="$TEST_LOCAL" NGROK_TOKEN="$NGROK_TOKEN" ./rundocker.sh testplat ubuntu:latest ; fi
2017-02-25 13:22:56 +00:00
- 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
2017-01-05 14:32:26 +00:00
matrix :
fast_finish : true
2019-10-05 13:06:58 +00:00