From c51aef5a14fc2ee886203941cb18539d6edde93e Mon Sep 17 00:00:00 2001 From: santosh653 <70637961+santosh653@users.noreply.github.com> Date: Mon, 12 Oct 2020 02:42:10 -0400 Subject: [PATCH 1/3] Update .travis.yml Adding arch: ppc64le & amd64 --- .travis.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index 3e3347c..a840633 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,3 +1,6 @@ +arch: + - ppc64le + - amd64 sudo: false language: erlang From d0ef277aa5eb73decb01f6a945555eb39eec7d92 Mon Sep 17 00:00:00 2001 From: santosh653 <70637961+santosh653@users.noreply.github.com> Date: Mon, 12 Oct 2020 02:53:44 -0400 Subject: [PATCH 2/3] Update .travis.yml --- .travis.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.travis.yml b/.travis.yml index a840633..a70f9b9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,6 +7,7 @@ language: erlang before_install: - pip install --user cpp-coveralls coveralls-merge + - if [ "$TRAVIS_ARCH" = "ppc64le" ]; then sudo apt-get update; sudo apt-get install rebar; fi install: - rebar get-deps @@ -21,6 +22,14 @@ otp_release: - 21.3 - 22.3 +# Disable otp_release 18.3 & 19.3 as these releases are not supported on Ubuntu16.04 for arch: ppc64le +jobs: + exclude: + - arch: ppc64le + otp_release: 18.3 + - arch: ppc64le + otp_release: 19.3 + after_success: - cpp-coveralls --exclude lib --exclude tests --gcov-options '\-lp' --dump c.json - coveralls-merge c.json erlang.json From a2977385bad89f2c7c4b3dd03dbbc40b7e085964 Mon Sep 17 00:00:00 2001 From: santosh653 <70637961+santosh653@users.noreply.github.com> Date: Mon, 12 Oct 2020 02:59:57 -0400 Subject: [PATCH 3/3] Update .travis.yml --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index a70f9b9..76c5166 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,7 +15,6 @@ install: script: rebar compile xref && rebar skip_deps=true eunit otp_release: - - 18.0 - 18.3 - 19.3 - 20.3