diff options
author | Ammar Askar <ammar@ammaraskar.com> | 2020-06-06 11:21:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-06 11:21:46 (GMT) |
commit | 5552850f8e6ad6bf610c2633c74ed42dacc81b46 (patch) | |
tree | 00563fafcb7496a8bf8e210175b060e5ffbc515b /.github/workflows/build.yml | |
parent | ba6fd87e41dceb01dcdacc57c722aca12cde42a9 (diff) | |
download | cpython-5552850f8e6ad6bf610c2633c74ed42dacc81b46.zip cpython-5552850f8e6ad6bf610c2633c74ed42dacc81b46.tar.gz cpython-5552850f8e6ad6bf610c2633c74ed42dacc81b46.tar.bz2 |
[workflow] Use gcc problem matcher for Ubuntu action build (GH-18567)
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r-- | .github/workflows/build.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6bb52cb..5649a66 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -87,6 +87,8 @@ jobs: OPENSSL_VER: 1.1.1f steps: - uses: actions/checkout@v2 + - name: Register gcc problem matcher + run: echo "::add-matcher::.github/problem-matchers/gcc.json" - name: Install Dependencies run: sudo ./.github/workflows/posix-deps-apt.sh - name: 'Restore OpenSSL build' |