diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 61c46489a..1d19ebe60 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -39,6 +39,9 @@ jobs: config.mk key: ${{ runner.os }}-configure + - name: Bind GCC problem matcher + uses: ammaraskar/gcc-problem-matcher@master + - name: Make run: make -j $(nproc) diff --git a/.github/workflows/windows-x32.yml b/.github/workflows/windows-x32.yml index ce725e0ee..2c4342bcf 100644 --- a/.github/workflows/windows-x32.yml +++ b/.github/workflows/windows-x32.yml @@ -17,7 +17,10 @@ jobs: submodules: 'true' - name: Add MSBuild to PATH - uses: microsoft/setup-msbuild@v1.0.2 + uses: microsoft/setup-msbuild@v1.1 + + - name: Bind MSVC problem matcher + uses: ammaraskar/msvc-problem-matcher@master - name: Make run: msbuild /m /p:Configuration=Debug-MSVC /p:Platform=Win32 .vs\deemon.sln diff --git a/.github/workflows/windows-x64.yml b/.github/workflows/windows-x64.yml index e87645fbd..f4d8fb479 100644 --- a/.github/workflows/windows-x64.yml +++ b/.github/workflows/windows-x64.yml @@ -17,7 +17,10 @@ jobs: submodules: 'true' - name: Add MSBuild to PATH - uses: microsoft/setup-msbuild@v1.0.2 + uses: microsoft/setup-msbuild@v1.1 + + - name: Bind MSVC problem matcher + uses: ammaraskar/msvc-problem-matcher@master - name: Make run: msbuild /m /p:Configuration=Debug-MSVC /p:Platform=x64 .vs\deemon.sln