concurrency
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
596a343352
commit
1dd08d6d06
19
.drone.yml
19
.drone.yml
|
@ -1,9 +1,24 @@
|
||||||
|
---
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
name: default
|
name: default
|
||||||
|
concurrency:
|
||||||
|
limit: 1
|
||||||
steps:
|
steps:
|
||||||
- name: test
|
- name: test
|
||||||
image: alpine
|
image: alpine
|
||||||
commands:
|
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"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue