1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
Takashi Kokubun 2019-08-18 23:19:09 +09:00
parent 829b800c10
commit d8807e8b1a
No known key found for this signature in database
GPG key ID: 6FFC433B12EE23DD
3 changed files with 36 additions and 0 deletions

View file

@ -58,3 +58,15 @@ jobs:
if: matrix.test_task != 'check'
- name: Leaked Globals
run: make -s leaked-globals
- uses: 8398a7/action-slack@v1
with:
type: success
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
if: success()
- uses: 8398a7/action-slack@v1
with:
type: failure
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
if: failure()

View file

@ -58,3 +58,15 @@ jobs:
continue-on-error: true
- name: Leaked Globals
run: make -s leaked-globals
- uses: 8398a7/action-slack@v1
with:
type: success
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
if: success()
- uses: 8398a7/action-slack@v1
with:
type: failure
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
if: failure()

View file

@ -53,3 +53,15 @@ jobs:
run: |
call "C:\Program Files (x86)\Microsoft Visual Studio\${{ matrix.vs }}\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
nmake ${{ matrix.test_task }}
- uses: 8398a7/action-slack@v1
with:
type: success
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
if: success()
- uses: 8398a7/action-slack@v1
with:
type: failure
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
if: failure()