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.

39 lines
1.2 KiB

language: shell
dist: trusty
os:
- linux
- osx
services:
- docker
matrix:
fast_finish: true
env:
global:
- SHFMT_URL=https://github.com/mvdan/sh/releases/download/v0.4.0/shfmt_v0.4.0_linux_amd64
install:
- |
if [ "$TRAVIS_OS_NAME" == "osx" ]; then
brew update && brew install socat
export PATH="/usr/local/opt/openssl@1.1/bin:$PATH"
fi
script:
- echo "NGROK_TOKEN=$(echo "$NGROK_TOKEN" | tr '[:print:]' '*')"
- command -V openssl && openssl version
- |
if [ "$TRAVIS_OS_NAME" == "linux" ]; then
curl -sSL "$SHFMT_URL" -o ~/shfmt && chmod +x ~/shfmt && ~/shfmt -l -w -i 2 .
git diff --exit-code && echo "shfmt OK."
shellcheck -V
shellcheck -e SC2181 **/*.sh && echo "shellcheck OK."
fi
- cd ..
- git clone --depth 1 https://github.com/acmesh-official/acmetest.git && cp -r acme.sh acmetest/ && cd acmetest
- if [ "$TRAVIS_OS_NAME" == "linux" -a "$NGROK_TOKEN" ]; then sudo TEST_LOCAL="$TEST_LOCAL" NGROK_TOKEN="$NGROK_TOKEN" ./rundocker.sh testplat ubuntu:latest ; fi
- 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