]> git.proxmox.com Git - mirror_acme.sh.git/blobdiff - .travis.yml
fix issue
[mirror_acme.sh.git] / .travis.yml
index e78787f68776fd4d04daa68670e4a0afa134154c..94848c17d4aa65d50a5b8b3b4f2cd9772c198668 100644 (file)
@@ -1,6 +1,10 @@
 language: shell\r
 sudo: required\r
 \r
+os:\r
+  - linux\r
+  - osx\r
+\r
 env:\r
   global:\r
     - SHFMT_URL=https://github.com/mvdan/sh/releases/download/v0.4.0/shfmt_v0.4.0_linux_amd64\r
@@ -12,17 +16,36 @@ addons:
     packages:\r
     - shellcheck\r
 \r
+install:\r
+  - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then \r
+      brew update && brew install openssl;\r
+      brew info openssl;\r
+      ln -s /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib /usr/local/lib/;\r
+      ln -s /usr/local/opt/openssl/lib/libssl.1.0.0.dylib /usr/local/lib/;\r
+      ln -s /usr/local/Cellar/openssl/1.0.2j/bin/openssl /usr/local/openssl;\r
+      _old_path="$PATH";\r
+      echo "PATH=$PATH";\r
+      export PATH="";\r
+      export OPENSSL_BIN="/usr/local/openssl";\r
+      openssl version 2>&1 || true;\r
+      $OPENSSL_BIN version 2>&1 || true;\r
+      export PATH="$_old_path";\r
+    fi\r
+  \r
 script:\r
-  - curl -sSL $SHFMT_URL -o ~/shfmt\r
-  - chmod +x ~/shfmt\r
-  - shellcheck -V\r
-  - shellcheck -e SC2021,SC2126,SC2034 **/*.sh && echo "shellcheck OK"\r
-  - ~/shfmt -l -w -i 2 .\r
-  - git diff --exit-code && echo "shfmt OK"\r
+  - echo "TEST_LOCAL=$TEST_LOCAL"\r
+  - echo "NGROK_TOKEN=$(echo "$NGROK_TOKEN" | wc -c)"\r
+  - which openssl && openssl version\r
+  - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then curl -sSL $SHFMT_URL -o ~/shfmt ; fi\r
+  - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then chmod +x ~/shfmt ; fi\r
+  - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then ~/shfmt -l -w -i 2 . ; fi\r
+  - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then git diff --exit-code && echo "shfmt OK" ; fi\r
+  - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then shellcheck -V ; fi\r
+  - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then shellcheck -e SC2021,SC2126,SC2034 **/*.sh && echo "shellcheck OK" ; fi\r
   - cd ..\r
-  - 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"\r
   - git clone https://github.com/Neilpang/acmetest.git && cp -r acme.sh acmetest/ && cd acmetest\r
-  - sudo ./letest.sh\r
+  - if [[ "$TRAVIS_OS_NAME" == "linux" ]] && [[ "$NGROK_TOKEN" ]]; then sudo NGROK_TOKEN="$NGROK_TOKEN" ./letest.sh ; fi\r
+  - if [[ "$TRAVIS_OS_NAME" == "osx" ]] && [[ "$NGROK_TOKEN" ]]; then sudo NGROK_TOKEN="$NGROK_TOKEN" OPENSSL_BIN="$OPENSSL_BIN" ./letest.sh ; fi\r
 \r
 \r
 matrix:\r