From a21980f2adeaee3bf917456df82c2cdd726d5277 Mon Sep 17 00:00:00 2001 From: John Barton Date: Wed, 11 Nov 2020 11:53:22 +1100 Subject: [PATCH] Try shifting env around --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6f62821..52d6038 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,17 +30,17 @@ jobs: architecture: "ppc64le" runs-on: ubuntu-latest - name: Build on ${{ matrix.arch.name }} + name: Test on ${{ matrix.arch.name }} steps: - uses: actions/checkout@v2 - uses: uraimo/run-on-arch-action@master - env: - GOARCH: ${{ matrix.arch.architecture }} - CGO_ENABLED: 0 with: architecture: ${{ matrix.arch.architecture }} distribution: ubuntu20.04 additionalArgs: -e GOARCH -e CGO_ENABLED + env: | # YAML pipe + GOARCH: ${{ matrix.arch.architecture }} + CGO_ENABLED: 0 run: | apt-get update apt install -y curl wget