forked from acmesh-official/acme.sh
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9190fdd
commit 90a15b8
Showing
1 changed file
with
18 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
language: shell | ||
|
||
dist: trusty | ||
|
||
os: | ||
|
@@ -8,30 +9,31 @@ os: | |
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/[email protected]/bin:$PATH" ; | ||
- | | ||
if [ "$TRAVIS_OS_NAME" == "osx" ]; then | ||
brew update && brew install socat | ||
export PATH="/usr/local/opt/[email protected]/bin:$PATH" | ||
fi | ||
script: | ||
- echo "NGROK_TOKEN=$(echo "$NGROK_TOKEN" | wc -c)" | ||
- 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 . ; fi | ||
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then git diff --exit-code && echo "shfmt OK" ; fi | ||
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then shellcheck -V ; fi | ||
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then shellcheck -e SC2181 **/*.sh && echo "shellcheck OK" ; fi | ||
- | | ||
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 | ||
|
||
matrix: | ||
fast_finish: true | ||
|
||
|
||
- 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 |