--- kind: pipeline type: docker name: default platform: os: linux arch: amd64 steps: - name: build image: ubuntu:20.04 commands: - apt update - DEBIAN_FRONTEND=noninteractive apt install -y gcc g++ cmake - mkdir build - cd build - cmake .. - make ...