From 5dd12d0cfe7f152f80558d591504ce685299311e Mon Sep 17 00:00:00 2001 From: santosh653 <70637961+santosh653@users.noreply.github.com> Date: Mon, 14 Dec 2020 01:45:52 -0500 Subject: [PATCH 1/2] AddingPowerSupport_CI/Testing (#234) * Update .travis.yml Adding Power & Updating the go versions to 1.13/1.14/1.15 as lower versions are not supported. * Update .travis.yml Removing go 1.13 as desired in the comment section, * Update .travis.yml As desired taking out the power(ppc64le) related support., --- .travis.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9159de03..81e650b9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,9 +1,11 @@ +arch: + - amd64 + language: go go_import_path: github.com/pkg/errors go: - - 1.11.x - - 1.12.x - - 1.13.x + - 1.14 + - 1.15 - tip script: From 87f8819acf6dc28bf5d3c14b334268236d686f48 Mon Sep 17 00:00:00 2001 From: Tonis Tiigi Date: Fri, 27 Mar 2026 08:10:00 -0700 Subject: [PATCH 2/2] Dummy workflow to enable GitHub Actions Signed-off-by: Tonis Tiigi --- .github/workflows/ci.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 00000000..f6fc4468 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,14 @@ +name: ci + +on: + workflow_dispatch: + push: + pull_request: + +jobs: + dummy: + runs-on: ubuntu-latest + steps: + - + name: Checkout + uses: actions/checkout@v2 \ No newline at end of file