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"