Skip to content

Commit

Permalink
Normalize Travis config
Browse files Browse the repository at this point in the history
  • Loading branch information
szepeviktor authored Jun 23, 2020
1 parent 9190fdd commit 90a15b8
Showing 1 changed file with 18 additions and 16 deletions.
34 changes: 18 additions & 16 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
language: shell

dist: trusty

os:
Expand All @@ -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

0 comments on commit 90a15b8

Please sign in to comment.