diff options
author | Charles Pigott <charlespigott@googlemail.com> | 2020-10-03 16:20:06 +0100 |
---|---|---|
committer | Charles Pigott <charlespigott@googlemail.com> | 2020-10-10 15:02:06 +0100 |
commit | 2073c8d67f6c8bee42eb49e37a89acfa8c45eac3 (patch) | |
tree | 08adf784fa701754d994fbfd822b53ad936ab06e | |
parent | f1ab41e3375cd605e3f43ce07438e6e25dd162e0 (diff) | |
download | openttd-2073c8d67f6c8bee42eb49e37a89acfa8c45eac3.tar.xz |
Add: [Actions] Add problem matchers for CI platforms
-rw-r--r-- | .github/workflows/ci-build.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index 8ab2783e9..ba30c2436 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -53,6 +53,7 @@ jobs: - name: CMake run: mkdir build && cd build && cmake .. + - uses: ammaraskar/gcc-problem-matcher@master - name: Build run: cd build && make -j2 @@ -80,6 +81,7 @@ jobs: vcpkgArguments: 'liblzma libpng lzo zlib' vcpkgTriplet: '${{ matrix.arch }}-windows-static' + - uses: ammaraskar/msvc-problem-matcher@master - name: 'Build' uses: lukka/run-cmake@v3 with: @@ -131,6 +133,7 @@ jobs: - name: CMake run: mkdir build && cd build && cmake .. + - uses: ammaraskar/gcc-problem-matcher@master - name: Build run: cd build && make -j2 |