ci: gh-actions: notify gitter
authorMichael Wallner <mike@php.net>
Mon, 21 Dec 2020 16:11:44 +0000 (17:11 +0100)
committerMichael Wallner <mike@php.net>
Mon, 21 Dec 2020 18:02:00 +0000 (19:02 +0100)
.github/notify-gitter.sh [changed mode: 0644->0755]
.github/workflows/cmake-build-ci.gen
.github/workflows/cmake-build-ci.yml

old mode 100644 (file)
new mode 100755 (executable)
index dd170e3bbeef6937e93b5645f3cfa3d151d24413..e8484a50e160506c620b04f5ebb7b8b714fc070c 100755 (executable)
@@ -263,6 +263,7 @@ function steps_package() {
 function steps_notify($os_vnd) {
 ?>
       - name: Notify Gitter
+        if: success() || failure()
         run: bash .github/notify-gitter.sh ${{ secrets.GITTER }} ${{ job.status }}
 <?php
 }
index 9d9c6a3613e1e91c4a3aa4b02e858bed627ce1a2..56e9bcba3f85e8b864a4eb35ed4b495f1096176f 100644 (file)
@@ -111,6 +111,7 @@ jobs:
           cmake --build build --config ${{ env.CMAKE_BUILD_TYPE }} -j2 --target package
           cmake --build build --config ${{ env.CMAKE_BUILD_TYPE }} -j2 --target push-artifacts
       - name: Notify Gitter
+        if: success() || failure()
         run: bash .github/notify-gitter.sh ${{ secrets.GITTER }} ${{ job.status }}
       - uses: codecov/codecov-action@v1.0.13
 
@@ -189,6 +190,7 @@ jobs:
           cmake --build build --config ${{ env.CMAKE_BUILD_TYPE }} -j2 --target package
           cmake --build build --config ${{ env.CMAKE_BUILD_TYPE }} -j2 --target push-artifacts
       - name: Notify Gitter
+        if: success() || failure()
         run: bash .github/notify-gitter.sh ${{ secrets.GITTER }} ${{ job.status }}
 
   # mac debug
@@ -260,6 +262,7 @@ jobs:
           cmake --build build --config ${{ env.CMAKE_BUILD_TYPE }} -j2 --target package
           cmake --build build --config ${{ env.CMAKE_BUILD_TYPE }} -j2 --target push-artifacts
       - name: Notify Gitter
+        if: success() || failure()
         run: bash .github/notify-gitter.sh ${{ secrets.GITTER }} ${{ job.status }}
       - uses: codecov/codecov-action@v1.0.13
 
@@ -331,6 +334,7 @@ jobs:
           cmake --build build --config ${{ env.CMAKE_BUILD_TYPE }} -j2 --target package
           cmake --build build --config ${{ env.CMAKE_BUILD_TYPE }} -j2 --target push-artifacts
       - name: Notify Gitter
+        if: success() || failure()
         run: bash .github/notify-gitter.sh ${{ secrets.GITTER }} ${{ job.status }}
 
   # windows release builds
@@ -394,6 +398,7 @@ jobs:
           cmake --build build --config ${{ env.CMAKE_BUILD_TYPE }} -j2 --target package
           cmake --build build --config ${{ env.CMAKE_BUILD_TYPE }} -j2 --target push-artifacts
       - name: Notify Gitter
+        if: success() || failure()
         run: bash .github/notify-gitter.sh ${{ secrets.GITTER }} ${{ job.status }}
 
   # linux release builds
@@ -544,4 +549,5 @@ jobs:
           cmake --build build --config ${{ env.CMAKE_BUILD_TYPE }} -j2 --target package
           cmake --build build --config ${{ env.CMAKE_BUILD_TYPE }} -j2 --target push-artifacts
       - name: Notify Gitter
+        if: success() || failure()
         run: bash .github/notify-gitter.sh ${{ secrets.GITTER }} ${{ job.status }}