|
30 | 30 | - name: Generate Matrix
|
31 | 31 | id: set-matrix
|
32 | 32 | run: php .github/nightly_matrix.php "${{ github.event_name }}" "${{ github.run_attempt }}"
|
| 33 | + - name: Notify Slack |
| 34 | + if: always() |
| 35 | + uses: ./.github/actions/notify-slack |
| 36 | + with: |
| 37 | + token: ${{ secrets.ACTION_MONITORING_SLACK }} |
33 | 38 | LINUX_X64:
|
34 | 39 | needs: GENERATE_MATRIX
|
35 | 40 | if: ${{ needs.GENERATE_MATRIX.outputs.branches != '[]' }}
|
@@ -108,6 +113,11 @@ jobs:
|
108 | 113 | -d opcache.jit=1205
|
109 | 114 | - name: Verify generated files are up to date
|
110 | 115 | uses: ./.github/actions/verify-generated-files
|
| 116 | + - name: Notify Slack |
| 117 | + if: always() |
| 118 | + uses: ./.github/actions/notify-slack |
| 119 | + with: |
| 120 | + token: ${{ secrets.ACTION_MONITORING_SLACK }} |
111 | 121 | LINUX_X32:
|
112 | 122 | needs: GENERATE_MATRIX
|
113 | 123 | if: ${{ needs.GENERATE_MATRIX.outputs.branches != '[]' }}
|
@@ -179,6 +189,11 @@ jobs:
|
179 | 189 | -d opcache.enable_cli=1
|
180 | 190 | -d opcache.jit_buffer_size=16M
|
181 | 191 | -d opcache.jit=1205
|
| 192 | + - name: Notify Slack |
| 193 | + if: always() |
| 194 | + uses: ./.github/actions/notify-slack |
| 195 | + with: |
| 196 | + token: ${{ secrets.ACTION_MONITORING_SLACK }} |
182 | 197 | MACOS:
|
183 | 198 | needs: GENERATE_MATRIX
|
184 | 199 | if: ${{ needs.GENERATE_MATRIX.outputs.branches != '[]' }}
|
@@ -242,6 +257,11 @@ jobs:
|
242 | 257 | -d opcache.jit=1205
|
243 | 258 | - name: Verify generated files are up to date
|
244 | 259 | uses: ./.github/actions/verify-generated-files
|
| 260 | + - name: Notify Slack |
| 261 | + if: always() |
| 262 | + uses: ./.github/actions/notify-slack |
| 263 | + with: |
| 264 | + token: ${{ secrets.ACTION_MONITORING_SLACK }} |
245 | 265 | COVERAGE_DEBUG_NTS:
|
246 | 266 | if: github.repository_owner == 'php' || github.event_name == 'workflow_dispatch'
|
247 | 267 | runs-on: ubuntu-20.04
|
@@ -276,6 +296,11 @@ jobs:
|
276 | 296 | - name: Upload Test Coverage to Codecov.io
|
277 | 297 | if: always()
|
278 | 298 | run: bash <(curl -s https://codecov.io/bash)
|
| 299 | + - name: Notify Slack |
| 300 | + if: always() |
| 301 | + uses: ./.github/actions/notify-slack |
| 302 | + with: |
| 303 | + token: ${{ secrets.ACTION_MONITORING_SLACK }} |
279 | 304 | COMMUNITY:
|
280 | 305 | needs: GENERATE_MATRIX
|
281 | 306 | if: ${{ needs.GENERATE_MATRIX.outputs.branches != '[]' }}
|
@@ -391,6 +416,11 @@ jobs:
|
391 | 416 | if [ $EXIT_CODE -gt 128 ]; then
|
392 | 417 | exit 1
|
393 | 418 | fi
|
| 419 | + - name: Notify Slack |
| 420 | + if: always() |
| 421 | + uses: ./.github/actions/notify-slack |
| 422 | + with: |
| 423 | + token: ${{ secrets.ACTION_MONITORING_SLACK }} |
394 | 424 | OPCACHE_VARIATION:
|
395 | 425 | needs: GENERATE_MATRIX
|
396 | 426 | if: ${{ needs.GENERATE_MATRIX.outputs.branches != '[]' }}
|
@@ -462,6 +492,11 @@ jobs:
|
462 | 492 | -d opcache.file_cache_only=1
|
463 | 493 | - name: Verify generated files are up to date
|
464 | 494 | uses: ./.github/actions/verify-generated-files
|
| 495 | + - name: Notify Slack |
| 496 | + if: always() |
| 497 | + uses: ./.github/actions/notify-slack |
| 498 | + with: |
| 499 | + token: ${{ secrets.ACTION_MONITORING_SLACK }} |
465 | 500 | MSAN:
|
466 | 501 | needs: GENERATE_MATRIX
|
467 | 502 | if: ${{ needs.GENERATE_MATRIX.outputs.branches != '[]' }}
|
@@ -554,6 +589,11 @@ jobs:
|
554 | 589 | -d opcache.enable_cli=1
|
555 | 590 | - name: Verify generated files are up to date
|
556 | 591 | uses: ./.github/actions/verify-generated-files
|
| 592 | + - name: Notify Slack |
| 593 | + if: always() |
| 594 | + uses: ./.github/actions/notify-slack |
| 595 | + with: |
| 596 | + token: ${{ secrets.ACTION_MONITORING_SLACK }} |
557 | 597 | LIBMYSQLCLIENT:
|
558 | 598 | needs: GENERATE_MATRIX
|
559 | 599 | if: ${{ needs.GENERATE_MATRIX.outputs.branches != '[]' }}
|
@@ -609,3 +649,8 @@ jobs:
|
609 | 649 | withMysqli: ${{ matrix.branch.ref == 'PHP-8.1' }}
|
610 | 650 | - name: Verify generated files are up to date
|
611 | 651 | uses: ./.github/actions/verify-generated-files
|
| 652 | + - name: Notify Slack |
| 653 | + if: always() |
| 654 | + uses: ./.github/actions/notify-slack |
| 655 | + with: |
| 656 | + token: ${{ secrets.ACTION_MONITORING_SLACK }} |
0 commit comments