--- kind: pipeline type: docker name: default steps: - name: build image: gcc commands: - make - name: run image: bash commands: - if [ -f ./hello ]; then ./hello; fi ...