From 5318cc877e17d0076271cc8e96b160b44aee0d2a Mon Sep 17 00:00:00 2001 From: Scott Harrison Moeller Date: Fri, 12 Mar 2021 17:25:38 -0500 Subject: [PATCH] Change working directory for Docker build An attempt to use learnings from here: https://github.com/actions/runner/issues/1009 --- .github/workflows/gcc-problems.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/gcc-problems.yml b/.github/workflows/gcc-problems.yml index 3fe92cf8bee06..af48a4a669d02 100644 --- a/.github/workflows/gcc-problems.yml +++ b/.github/workflows/gcc-problems.yml @@ -100,7 +100,7 @@ jobs: with: image: magma/mme_builder:latest # TODO: Break up this long line (can I use '\' at end of each line?) - run: cd /magma/lte/gateway;make build_oai 2>&1 > /compile.log;for file in ${{ steps.changed_files.outputs.all }}; do grep $file /compile.log | xo '/\/magma\/((.*):(\d+):(\d+):\s+(?:fatal\s)?(warning|error):\s+(.*))/$1/' || true; done; + run: cd lte/gateway;make build_oai 2>&1 > /compile.log;for file in ${{ steps.changed_files.outputs.all }}; do grep $file /compile.log | xo '/\/magma\/((.*):(\d+):(\d+):\s+(?:fatal\s)?(warning|error):\s+(.*))/$1/' || true; done; - name: Store oai_build_logs artifact uses: actions/upload-artifact@v2