ci: gh-actions: consolidate gitter notify
[m6w6/libmemcached] / .github / workflows / cmake-build-ci.yml
index 96f170c53b7a4e527026751769f0200f2a32d608..13a2f40e14d6b63a2a958c37efa80d4ab97f836e 100644 (file)
@@ -111,19 +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 (success)
-        if: ${{ success() && runner.os != 'Windows'}}
-        run: |
-          REF=$(basename ${GITHUB_REF})
-          curl -sS "${{ secrets.GITTER }}" \
-            --data-urlencode "level=info" \
-            --data-urlencode "message=Github [${GITHUB_REPOSITORY}](https://github.com/${GITHUB_REPOSITORY}/commits/${REF}) (${REF}) [success](https://github.com/m6w6/libmemcached/actions/runs/${GITHUB_RUN_ID}) (${ImageOS}/${CC:-${CC_VND}-${CC_VER}})"
-      - name: Notify Gitter (failure)
-        if: ${{ failure() && runner.os != 'Windows'}}
-        run: |
-          REF=$(basename ${GITHUB_REF})
-          curl -sS "${{ secrets.GITTER }}" \
-            --data-urlencode "level=error" \
-            --data-urlencode "message=Github [${GITHUB_REPOSITORY}](https://github.com/${GITHUB_REPOSITORY}/commits/${REF}) (${REF}) [failure](https://github.com/m6w6/libmemcached/actions/runs/${GITHUB_RUN_ID}) (${ImageOS}/${CC:-${CC_VND}-${CC_VER}})"
+        run: bash .github/notify-gitter.sh ${{ secrets.GITTER }} ${{ success() }}
       - uses: codecov/codecov-action@v1.0.13
 
   # sanitizer build
@@ -201,19 +189,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 (success)
-        if: ${{ success() && runner.os != 'Windows'}}
-        run: |
-          REF=$(basename ${GITHUB_REF})
-          curl -sS "${{ secrets.GITTER }}" \
-            --data-urlencode "level=info" \
-            --data-urlencode "message=Github [${GITHUB_REPOSITORY}](https://github.com/${GITHUB_REPOSITORY}/commits/${REF}) (${REF}) [success](https://github.com/m6w6/libmemcached/actions/runs/${GITHUB_RUN_ID}) (${ImageOS}/${CC:-${CC_VND}-${CC_VER}})"
-      - name: Notify Gitter (failure)
-        if: ${{ failure() && runner.os != 'Windows'}}
-        run: |
-          REF=$(basename ${GITHUB_REF})
-          curl -sS "${{ secrets.GITTER }}" \
-            --data-urlencode "level=error" \
-            --data-urlencode "message=Github [${GITHUB_REPOSITORY}](https://github.com/${GITHUB_REPOSITORY}/commits/${REF}) (${REF}) [failure](https://github.com/m6w6/libmemcached/actions/runs/${GITHUB_RUN_ID}) (${ImageOS}/${CC:-${CC_VND}-${CC_VER}})"
+        run: bash .github/notify-gitter.sh ${{ secrets.GITTER }} ${{ success() }}
 
   # mac debug
   dbg-mac:
@@ -284,19 +260,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 (success)
-        if: ${{ success() && runner.os != 'Windows'}}
-        run: |
-          REF=$(basename ${GITHUB_REF})
-          curl -sS "${{ secrets.GITTER }}" \
-            --data-urlencode "level=info" \
-            --data-urlencode "message=Github [${GITHUB_REPOSITORY}](https://github.com/${GITHUB_REPOSITORY}/commits/${REF}) (${REF}) [success](https://github.com/m6w6/libmemcached/actions/runs/${GITHUB_RUN_ID}) (${ImageOS}/${CC:-${CC_VND}-${CC_VER}})"
-      - name: Notify Gitter (failure)
-        if: ${{ failure() && runner.os != 'Windows'}}
-        run: |
-          REF=$(basename ${GITHUB_REF})
-          curl -sS "${{ secrets.GITTER }}" \
-            --data-urlencode "level=error" \
-            --data-urlencode "message=Github [${GITHUB_REPOSITORY}](https://github.com/${GITHUB_REPOSITORY}/commits/${REF}) (${REF}) [failure](https://github.com/m6w6/libmemcached/actions/runs/${GITHUB_RUN_ID}) (${ImageOS}/${CC:-${CC_VND}-${CC_VER}})"
+        run: bash .github/notify-gitter.sh ${{ secrets.GITTER }} ${{ success() }}
       - uses: codecov/codecov-action@v1.0.13
 
   # mac release
@@ -315,13 +279,12 @@ jobs:
       - uses: actions/checkout@v2
         with:
           fetch-depth: 0
-      - name: Prepare environment (for cur gnu on ubuntu-20.04)
-        if: (env.OS_VER=='ubuntu-20.04') && (env.CC_VND=='gnu') && (env.CC_VER=='cur')
+      - name: Install dependencies (macOS)
+        if: runner.os == 'macOS'
         run: |
-          echo CC="gcc-9" >> ${GITHUB_ENV}
-          echo CXX="g++-9" >> ${GITHUB_ENV}
-      - name: Install dependencies ()
-        if: runner.os == ''
+          brew install bison flex sphinx-doc ${INSTALL_MEMCACHED}
+          brew services stop memcached || true
+          echo MEMCACHED_BINARY="/usr/local/bin/memcached" >> ${GITHUB_ENV}
       - name: Build memcached
         if: runner.os != 'Windows'
         run: |
@@ -368,19 +331,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 (success)
-        if: ${{ success() && runner.os != 'Windows'}}
-        run: |
-          REF=$(basename ${GITHUB_REF})
-          curl -sS "${{ secrets.GITTER }}" \
-            --data-urlencode "level=info" \
-            --data-urlencode "message=Github [${GITHUB_REPOSITORY}](https://github.com/${GITHUB_REPOSITORY}/commits/${REF}) (${REF}) [success](https://github.com/m6w6/libmemcached/actions/runs/${GITHUB_RUN_ID}) (${ImageOS}/${CC:-${CC_VND}-${CC_VER}})"
-      - name: Notify Gitter (failure)
-        if: ${{ failure() && runner.os != 'Windows'}}
-        run: |
-          REF=$(basename ${GITHUB_REF})
-          curl -sS "${{ secrets.GITTER }}" \
-            --data-urlencode "level=error" \
-            --data-urlencode "message=Github [${GITHUB_REPOSITORY}](https://github.com/${GITHUB_REPOSITORY}/commits/${REF}) (${REF}) [failure](https://github.com/m6w6/libmemcached/actions/runs/${GITHUB_RUN_ID}) (${ImageOS}/${CC:-${CC_VND}-${CC_VER}})"
+        run: bash .github/notify-gitter.sh ${{ secrets.GITTER }} ${{ success() }}
 
   # windows release builds
   windows:
@@ -442,6 +393,8 @@ jobs:
           cmake -DCPACK_COMPONENT_INSTALL=ON build
           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 (success)
+        run: bash .github/notify-gitter.sh ${{ secrets.GITTER }} ${{ success() }}
 
   # linux release builds
   release:
@@ -584,16 +537,4 @@ 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 (success)
-        if: ${{ success() && runner.os != 'Windows'}}
-        run: |
-          REF=$(basename ${GITHUB_REF})
-          curl -sS "${{ secrets.GITTER }}" \
-            --data-urlencode "level=info" \
-            --data-urlencode "message=Github [${GITHUB_REPOSITORY}](https://github.com/${GITHUB_REPOSITORY}/commits/${REF}) (${REF}) [success](https://github.com/m6w6/libmemcached/actions/runs/${GITHUB_RUN_ID}) (${ImageOS}/${CC:-${CC_VND}-${CC_VER}})"
-      - name: Notify Gitter (failure)
-        if: ${{ failure() && runner.os != 'Windows'}}
-        run: |
-          REF=$(basename ${GITHUB_REF})
-          curl -sS "${{ secrets.GITTER }}" \
-            --data-urlencode "level=error" \
-            --data-urlencode "message=Github [${GITHUB_REPOSITORY}](https://github.com/${GITHUB_REPOSITORY}/commits/${REF}) (${REF}) [failure](https://github.com/m6w6/libmemcached/actions/runs/${GITHUB_RUN_ID}) (${ImageOS}/${CC:-${CC_VND}-${CC_VER}})"
+        run: bash .github/notify-gitter.sh ${{ secrets.GITTER }} ${{ success() }}