diff --git a/.github/workflows/gcc-problems.yml b/.github/workflows/gcc-problems.yml index 3fe92cf8bee06..8c83087654b5a 100644 --- a/.github/workflows/gcc-problems.yml +++ b/.github/workflows/gcc-problems.yml @@ -100,7 +100,14 @@ 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: pwd; \ + ls /github/workflow/; \ + ls /github/workspace/; \ + cd /github/workflow/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