Skip to content

Commit

Permalink
#450 Build analyzers and responders Docker
Browse files Browse the repository at this point in the history
  • Loading branch information
To-om authored and nadouani committed Apr 5, 2019
1 parent 6c2fb10 commit cacc199
Showing 1 changed file with 27 additions and 4 deletions.
31 changes: 27 additions & 4 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,43 @@ kind: pipeline
name: default

steps:
- name: build workers for release
- name: build analyzers for release
image: thehiveproject/cortex-worker-builder
settings:
namespace: cortexengine
worker_path: analyzers
namespace: cortexneurons
user: {from_secret: docker_username}
password: {from_secret: docker_password}
latest: true
when:
event: [tag]

- name: build snapshot workers
- name: build responders for release
image: thehiveproject/cortex-worker-builder
settings:
namespace: cortexengine
worker_path: responders
namespace: cortexneurons
user: {from_secret: docker_username}
password: {from_secret: docker_password}
latest: true
when:
event: [tag]

- name: build snapshot analyzers
image: thehiveproject/cortex-worker-builder
settings:
worker_path: analyzers
namespace: cortexneurons
user: {from_secret: docker_username}
password: {from_secret: docker_password}
when:
event: {exclude: [tag]}

- name: build snapshot responders
image: thehiveproject/cortex-worker-builder
settings:
worker_path: responders
namespace: cortexneurons
user: {from_secret: docker_username}
password: {from_secret: docker_password}
when:
Expand Down

0 comments on commit cacc199

Please sign in to comment.