Skip to content

Commit

Permalink
ci(drone): fix duplicate pipeline names (#10437)
Browse files Browse the repository at this point in the history
Drone requires unique pipeline names, which PR #10423 (5c45465) missed.
  • Loading branch information
PiDelport authored Sep 22, 2021
1 parent 14bebcd commit 30a37b3
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions CI/.drone.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
kind: pipeline
type: docker
name: default
name: java11-test
steps:
# test Java 11 HTTP client
- name: java11-test
Expand All @@ -20,7 +20,7 @@ steps:
---
kind: pipeline
type: docker
name: default
name: nim-client-test
steps:
# test nim client
- name: nim-client-test
Expand All @@ -31,7 +31,7 @@ steps:
---
kind: pipeline
type: docker
name: default
name: protobuf-schema-test
steps:
# test protobuf schema generator
- name: protobuf-schema-test
Expand All @@ -46,7 +46,7 @@ steps:
---
kind: pipeline
type: docker
name: default
name: aspnetcore-test
steps:
# test aspnetcore 3.x
- name: aspnetcore-test
Expand All @@ -58,7 +58,7 @@ steps:
---
kind: pipeline
type: docker
name: default
name: ocaml-test
steps:
# test ocaml petstore client
- name: ocaml-test
Expand All @@ -75,7 +75,7 @@ steps:
---
kind: pipeline
type: docker
name: default
name: haskell-client-test
steps:
# test haskell client
- name: haskell-client-test
Expand All @@ -86,7 +86,7 @@ steps:
---
kind: pipeline
type: docker
name: default
name: erlang
steps:
# test erlang client and server
- name: erlang
Expand Down

0 comments on commit 30a37b3

Please sign in to comment.