From 70a916886156f2f4fe8ee8812fb00a2c648d0ba6 Mon Sep 17 00:00:00 2001 From: Tino Breddin Date: Wed, 27 Mar 2019 09:54:19 +0100 Subject: Add helpful debug output of Travis failures --- .travis.yml | 3 +++ 1 file changed, 3 insertions(+) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index ed0f025..0004695 100644 --- a/.travis.yml +++ b/.travis.yml @@ -27,6 +27,9 @@ before_script: - wget https://s3.amazonaws.com/rebar3/rebar3 - chmod +x rebar3 script: "./rebar3 update && ./rebar3 ct" +after_failure: + ## Useful for troubleshooting to view test logs + - find _build/test/logs/ct_run*/lib*logs/run*/log_private/*-output*/*/log -type f -name "erlang*" -exec ls -1rt "{}" \+ | xargs -I % sh -c 'echo "\n\n%"; cat %' branches: only: - master -- cgit v1.2.3 From 00af9bafb2c22f78eb0a02ff89752705e781c20f Mon Sep 17 00:00:00 2001 From: Luis Rascao Date: Sun, 31 Mar 2019 23:09:43 +0100 Subject: Add travis.dev host --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index 0004695..e1a31d1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -35,6 +35,8 @@ branches: - master addons: hostname: travis.dev + hosts: + - travis.dev notifications: email: - core@erlware.org -- cgit v1.2.3 From cecbe865bcd025e3d8e08d6e6070cb03d47e66e1 Mon Sep 17 00:00:00 2001 From: Tristan Sloughter Date: Mon, 1 Apr 2019 14:22:09 -0600 Subject: have travis only run 17 and osx. add circleci badge (#703) * have travis only run 17 and osx. add circleci badge * use localhost for shortname nodes in tests --- .travis.yml | 12 ------------ 1 file changed, 12 deletions(-) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index e1a31d1..4e4f877 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,18 +4,6 @@ matrix: - os: linux sudo: required otp_release: 17.5 - - os: linux - sudo: required - otp_release: 18.3 - - os: linux - sudo: required - otp_release: 19.3 - - os: linux - sudo: required - otp_release: 20.0 - - os: linux - sudo: required - otp_release: 21.0 - os: osx sudo: required language: generic -- cgit v1.2.3 From 02e3d99d6a93e8c9ee982348366ee607aec45cdb Mon Sep 17 00:00:00 2001 From: Tristan Sloughter Date: Tue, 14 May 2019 17:25:21 -0600 Subject: remove travis and circle --- .travis.yml | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 .travis.yml (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 4e4f877..0000000 --- a/.travis.yml +++ /dev/null @@ -1,35 +0,0 @@ -language: erlang -matrix: - include: - - os: linux - sudo: required - otp_release: 17.5 - - os: osx - sudo: required - language: generic -before_script: - - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi - ## should eventually use a tap that has previous erlang versions here - ## as this only uses the latest erlang available via brew - - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install erlang; fi - - wget https://s3.amazonaws.com/rebar3/rebar3 - - chmod +x rebar3 -script: "./rebar3 update && ./rebar3 ct" -after_failure: - ## Useful for troubleshooting to view test logs - - find _build/test/logs/ct_run*/lib*logs/run*/log_private/*-output*/*/log -type f -name "erlang*" -exec ls -1rt "{}" \+ | xargs -I % sh -c 'echo "\n\n%"; cat %' -branches: - only: - - master -addons: - hostname: travis.dev - hosts: - - travis.dev -notifications: - email: - - core@erlware.org - irc: - channels: - - "irc.freenode.org#erlware" - use_notice: true - skip_join: true -- cgit v1.2.3