From 705a0066a5bb7ea788e7ad9b888ed3742d5c4d67 Mon Sep 17 00:00:00 2001 From: santosh653 <70637961+santosh653@users.noreply.github.com> Date: Mon, 7 Dec 2020 06:53:59 -0500 Subject: [PATCH 1/2] Update .travis.yml Adding power support & updating the go versions to >=1.13 as lower versions are not supported., --- .travis.yml | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/.travis.yml b/.travis.yml index 27c3ce8..d3299f1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,17 +1,11 @@ +arch: + - amd64 + - ppc64le language: go go: - - 1.2.x - - 1.3.x - - 1.4.x - - 1.5.x - - 1.6.x - - 1.7.x - - 1.8.x - - 1.9.x - - 1.10.x - - 1.11.x - - 1.12.x - 1.13.x + - 1.14.x + - 1.15.x - tip From 3798c63c0d153966d87f38fe94b0209edd992a6f Mon Sep 17 00:00:00 2001 From: santosh653 <70637961+santosh653@users.noreply.github.com> Date: Mon, 7 Dec 2020 23:31:38 -0500 Subject: [PATCH 2/2] Update .travis.yml Excluding unsupported versions for Power., ie go <=1.12.x --- .travis.yml | 37 +++++++++++++++++++++++++++++++++++-- 1 file changed, 35 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index d3299f1..29e9e64 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,8 +4,41 @@ arch: language: go go: + - 1.2.x + - 1.3.x + - 1.4.x + - 1.5.x + - 1.6.x + - 1.7.x + - 1.8.x + - 1.9.x + - 1.10.x + - 1.11.x + - 1.12.x - 1.13.x - - 1.14.x - - 1.15.x - tip +jobs: + exclude: + - arch: ppc64le + go: 1.2.x + - arch: ppc64le + go: 1.3.x + - arch: ppc64le + go: 1.4.x + - arch: ppc64le + go: 1.5.x + - arch: ppc64le + go: 1.6.x + - arch: ppc64le + go: 1.7.x + - arch: ppc64le + go: 1.8.x + - arch: ppc64le + go: 1.9.x + - arch: ppc64le + go: 1.10.x + - arch: ppc64le + go: 1.11.x + - arch: ppc64le + go: 1.12.x