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() }}
+ - name: Notify Gitter
+ run: bash .github/notify-gitter.sh ${{ secrets.GITTER }} ${{ job.status }}
- uses: codecov/codecov-action@v1.0.13
# sanitizer build
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() }}
+ - name: Notify Gitter
+ run: bash .github/notify-gitter.sh ${{ secrets.GITTER }} ${{ job.status }}
# mac debug
dbg-mac:
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() }}
+ - name: Notify Gitter
+ run: bash .github/notify-gitter.sh ${{ secrets.GITTER }} ${{ job.status }}
- uses: codecov/codecov-action@v1.0.13
# mac release
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() }}
+ - name: Notify Gitter
+ run: bash .github/notify-gitter.sh ${{ secrets.GITTER }} ${{ job.status }}
# windows release builds
windows:
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() }}
+ - name: Notify Gitter
+ run: bash .github/notify-gitter.sh ${{ secrets.GITTER }} ${{ job.status }}
# linux release builds
release:
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() }}
+ - name: Notify Gitter
+ run: bash .github/notify-gitter.sh ${{ secrets.GITTER }} ${{ job.status }}