--- kind: pipeline type: docker name: default steps: - name: build image: ghcr.io/rikorose/gcc-cmake commands: - mkdir build && cd build - cmake -DCMAKE_BUILD_TYPE=Release .. - make - name: docs image: docker.io/corentinaltepe/doxygen commands: - doxygen - ls docs depends_on: - build