]> git.proxmox.com Git - mirror_acme.sh.git/blobdiff - .travis.yml
fix issue
[mirror_acme.sh.git] / .travis.yml
index 3d368d7ef3512a9baf339760c32e7d3de3707c95..94848c17d4aa65d50a5b8b3b4f2cd9772c198668 100644 (file)
@@ -1,4 +1,9 @@
 language: shell\r
+sudo: required\r
+\r
+os:\r
+  - linux\r
+  - osx\r
 \r
 env:\r
   global:\r
@@ -11,23 +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 . && echo "shfmt OK" || git diff --exit-code || (echo "Run shfmt to fix the formatting issues" && false)\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
-  - $NGROK_BIN\r
-  - $NGROK_BIN authtoken "$NGROK_TOKEN" \r
   - git clone https://github.com/Neilpang/acmetest.git && cp -r acme.sh acmetest/ && cd acmetest\r
-  - $NGROK_BIN http 80 --log stdout --log-format logfmt --log-level debug > ngrok.tmp &\r
-  - echo "==========================="\r
-  - cat ngrok.tmp\r
-  - echo ==============================\r
-  - grep -o 'Hostname:[a-z0-9]+.ngrok.io' ngrok.tmp\r
-  - ./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