mirror of
https://github.com/Drezil/imgui.git
synced 2024-11-15 01:17:00 +00:00
CI: Add discord notifications.
This commit is contained in:
parent
179dc04d8a
commit
3be352fc80
40
.github/workflows/build.yml
vendored
40
.github/workflows/build.yml
vendored
@ -179,6 +179,14 @@ jobs:
|
|||||||
shell: cmd
|
shell: cmd
|
||||||
run: '"%MSBUILD_PATH%\MSBuild.exe" examples/example_win32_directx12/example_win32_directx12.vcxproj /p:Platform=x64 /p:Configuration=Release'
|
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:
|
Linux:
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
steps:
|
steps:
|
||||||
@ -310,6 +318,14 @@ jobs:
|
|||||||
- name: Build example_sdl_opengl3
|
- name: Build example_sdl_opengl3
|
||||||
run: make -C examples/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:
|
MacOS:
|
||||||
runs-on: macOS-latest
|
runs-on: macOS-latest
|
||||||
steps:
|
steps:
|
||||||
@ -365,6 +381,14 @@ jobs:
|
|||||||
- name: Build example_apple_opengl2
|
- name: Build example_apple_opengl2
|
||||||
run: xcodebuild -project examples/example_apple_opengl2/example_apple_opengl2.xcodeproj -target example_osx_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:
|
iOS:
|
||||||
runs-on: macOS-latest
|
runs-on: macOS-latest
|
||||||
steps:
|
steps:
|
||||||
@ -377,6 +401,14 @@ jobs:
|
|||||||
# Code signing is required, but we disable it because it is irrelevant for CI builds.
|
# 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
|
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:
|
Emscripten:
|
||||||
runs-on: ubuntu-18.04
|
runs-on: ubuntu-18.04
|
||||||
steps:
|
steps:
|
||||||
@ -398,3 +430,11 @@ jobs:
|
|||||||
source ./emsdk_env.sh
|
source ./emsdk_env.sh
|
||||||
popd
|
popd
|
||||||
make -C examples/example_emscripten
|
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 }}
|
||||||
|
8
.github/workflows/static-analysis.yml
vendored
8
.github/workflows/static-analysis.yml
vendored
@ -41,3 +41,11 @@ jobs:
|
|||||||
pvs-studio-analyzer trace -- make WITH_EXTRA_WARNINGS=1
|
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
|
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
|
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 }}
|
||||||
|
Loading…
Reference in New Issue
Block a user