From 1dd08d6d0675cac0bfe077fbe5bf2fed4933d03c Mon Sep 17 00:00:00 2001 From: Giles Bradshaw Date: Thu, 16 Jul 2020 12:21:28 +0100 Subject: [PATCH] concurrency --- .drone.yml | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index 2fc50dc..2bf01f9 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,9 +1,24 @@ +--- kind: pipeline name: default - +concurrency: + limit: 1 steps: - name: test image: alpine commands: - - echo "hello drone!!" + - sleep 120 + - echo "default" + +--- +kind: pipeline +name: default-1 +concurrency: + limit: 1 +steps: +- name: test + image: alpine + commands: + - sleep 120 + - echo "default-1"