github.com/pf-qiu/concourse/v6@v6.7.3-0.20201207032516-1f455d73275f/topgun/pipelines/build-image-gc-part-1.yml (about) 1 --- 2 jobs: 3 - name: some-job 4 plan: 5 - task: wait 6 config: 7 platform: linux 8 image_resource: 9 type: mock 10 source: 11 mirror_self: true 12 initial_version: pipeline-image-1 13 run: 14 path: sh 15 args: 16 - -c 17 - | 18 until test -f /tmp/stop-waiting; do 19 echo 'waiting for /tmp/stop-waiting to exist' 20 sleep 1 21 done 22 23 echo done