From ec872512b9ba5e493c50a88e97a9f81b33b8e182 Mon Sep 17 00:00:00 2001 From: Denise Yu Date: Fri, 2 Aug 2019 12:41:20 -0400 Subject: [PATCH] Remove example dir * This should not be used as a canonical pipeline, and examples of the time resource and parallel jobs exist in the documentation Signed-off-by: Denise Yu --- README.md | 4 +- examples/hello-world-every-minute.yml | 55 --------------------------- 2 files changed, 2 insertions(+), 57 deletions(-) delete mode 100644 examples/hello-world-every-minute.yml diff --git a/README.md b/README.md index bfd4ba326..c744b32dd 100644 --- a/README.md +++ b/README.md @@ -80,8 +80,8 @@ Concourse instance to the next. ### Learn More -* The [Official Site](https://concourse-ci.org) for documentation and - reference material. +* The [Official Site](https://concourse-ci.org) for documentation, + reference material, and example pipelines (which no longer live in this repository). * The [Concourse Tutorial](https://concoursetutorial.com) by Stark & Wayne is great for a guided introduction to all the core concepts. * See Concourse in action with our [production pipelines](https://ci.concourse-ci.org/) diff --git a/examples/hello-world-every-minute.yml b/examples/hello-world-every-minute.yml deleted file mode 100644 index 7505108cc..000000000 --- a/examples/hello-world-every-minute.yml +++ /dev/null @@ -1,55 +0,0 @@ -resource_types: - - name: time - type: registry-image - source: - repository: concourse/time-resource - -resources: - - name: every-minute - type: time - source: - interval: 1m - -config: &config - platform: linux - image_resource: - type: registry-image - source: - repository: busybox - run: - path: /bin/sh - args: - - -cex - - | - sleep 10 - echo hello world - -jobs: - - name: test-parallel - plan: - - get: every-minute - trigger: true - - in_parallel: - limit: 3 - steps: - - task: echo1 - config: *config - - task: echo2 - config: - platform: linux - image_resource: - type: registry-image - source: - repository: busybox - run: - path: /bin/sh - args: - - -cex - - | - sleep 5 - eccho - - task: echo3 - config: *config - - task: echo4 - config: *config - fail_fast: true