diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index eea8eaa3..83c862da 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -179,6 +179,14 @@ jobs: shell: cmd run: '"%MSBUILD_PATH%\MSBuild.exe" examples/example_win32_directx12/example_win32_directx12.vcxproj /p:Platform=x64 /p:Configuration=Release' + - uses: sarisia/actions-status-discord@v1 + if: failure() + with: + webhook: ${{ secrets.DISCORD_CI_WEBHOOK }} + username: GitHub Actions + color: 0xFF0000 + title: ${{ github.job }} + Linux: runs-on: ubuntu-20.04 steps: @@ -310,6 +318,14 @@ jobs: - name: Build example_sdl_opengl3 run: make -C examples/example_sdl_opengl3 + - uses: sarisia/actions-status-discord@v1 + if: failure() + with: + webhook: ${{ secrets.DISCORD_CI_WEBHOOK }} + username: GitHub Actions + color: 0xFF0000 + title: ${{ github.job }} + MacOS: runs-on: macOS-latest steps: @@ -365,6 +381,14 @@ jobs: - name: Build example_apple_opengl2 run: xcodebuild -project examples/example_apple_opengl2/example_apple_opengl2.xcodeproj -target example_osx_opengl2 + - uses: sarisia/actions-status-discord@v1 + if: failure() + with: + webhook: ${{ secrets.DISCORD_CI_WEBHOOK }} + username: GitHub Actions + color: 0xFF0000 + title: ${{ github.job }} + iOS: runs-on: macOS-latest steps: @@ -377,6 +401,14 @@ jobs: # Code signing is required, but we disable it because it is irrelevant for CI builds. xcodebuild -project examples/example_apple_metal/example_apple_metal.xcodeproj -target example_apple_metal_ios CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO + - uses: sarisia/actions-status-discord@v1 + if: failure() + with: + webhook: ${{ secrets.DISCORD_CI_WEBHOOK }} + username: GitHub Actions + color: 0xFF0000 + title: ${{ github.job }} + Emscripten: runs-on: ubuntu-18.04 steps: @@ -398,3 +430,11 @@ jobs: source ./emsdk_env.sh popd make -C examples/example_emscripten + + - uses: sarisia/actions-status-discord@v1 + if: failure() + with: + webhook: ${{ secrets.DISCORD_CI_WEBHOOK }} + username: GitHub Actions + color: 0xFF0000 + title: ${{ github.job }} diff --git a/.github/workflows/static-analysis.yml b/.github/workflows/static-analysis.yml index 7967d532..3681ecb2 100644 --- a/.github/workflows/static-analysis.yml +++ b/.github/workflows/static-analysis.yml @@ -41,3 +41,11 @@ jobs: pvs-studio-analyzer trace -- make WITH_EXTRA_WARNINGS=1 pvs-studio-analyzer analyze -e ../../imstb_rectpack.h -e ../../imstb_textedit.h -e ../../imstb_truetype.h -l ../../pvs-studio.lic -o pvs-studio.log plog-converter -a 'GA:1,2;OP:1' -t errorfile -w pvs-studio.log + + - uses: sarisia/actions-status-discord@v1 + if: failure() + with: + webhook: ${{ secrets.DISCORD_CI_WEBHOOK }} + username: GitHub Actions + color: 0xFF0000 + title: ${{ github.job }}