kind: pipeline type: docker name: default steps: - name: build and test pull: never image: erki/cpp-ubuntu:latest commands: - mkdir -p build - cd build - cmake .. -G "Ninja" -DCMAKE_BUILD_TYPE=Release -DWITH_TESTS=ON - ninja - ctest . --output-on-failure - name: notify image: plugins/matrix settings: homeserver: from_secret: matrix_homeserver roomid: from_secret: matrix_roomid username: from_secret: matrix_username password: from_secret: matrix_password when: status: - failure