ci: add parallelism
This commit is contained in:
parent
7435b451b7
commit
e25ba4d091
1 changed files with 40 additions and 23 deletions
61
.drone.yml
61
.drone.yml
|
@ -1,13 +1,13 @@
|
||||||
---
|
---
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
type: docker
|
type: docker
|
||||||
name: default
|
name: linting
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
http_proxy: http://192.168.2.43:9999 # für apt, zeigt auf docker10.grote.lan
|
http_proxy: http://192.168.2.43:9999 # für apt, zeigt auf docker10.grote.lan
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: run gitleaks
|
- name: gitleaks
|
||||||
image: plugins/gitleaks
|
image: plugins/gitleaks
|
||||||
settings:
|
settings:
|
||||||
path: .
|
path: .
|
||||||
|
@ -19,9 +19,17 @@ steps:
|
||||||
- name: hadolint
|
- name: hadolint
|
||||||
image: hadolint/hadolint:latest-debian
|
image: hadolint/hadolint:latest-debian
|
||||||
commands:
|
commands:
|
||||||
- hadolint --version
|
|
||||||
- hadolint Dockerfile
|
- hadolint Dockerfile
|
||||||
|
|
||||||
|
---
|
||||||
|
kind: pipeline
|
||||||
|
type: docker
|
||||||
|
name: selfhosted
|
||||||
|
depends_on: # bezieht sich auf linting pipeline
|
||||||
|
- linting
|
||||||
|
environment:
|
||||||
|
http_proxy: http://192.168.2.43:9999 # für apt, zeigt auf docker10.grote.lan
|
||||||
|
steps:
|
||||||
- name: docker_build_and_push_selfhosted
|
- name: docker_build_and_push_selfhosted
|
||||||
image: plugins/docker
|
image: plugins/docker
|
||||||
settings:
|
settings:
|
||||||
|
@ -38,25 +46,6 @@ steps:
|
||||||
- pull_request
|
- pull_request
|
||||||
- tag
|
- tag
|
||||||
|
|
||||||
- name: docker_build_and_push_dockerhub
|
|
||||||
image: plugins/docker
|
|
||||||
settings:
|
|
||||||
username:
|
|
||||||
from_secret: DOCKERHUB_USER
|
|
||||||
password:
|
|
||||||
from_secret: DOCKERHUB_PASS
|
|
||||||
dockerfile: Dockerfile
|
|
||||||
repo: quotengrote/allzweckcontainer
|
|
||||||
tags:
|
|
||||||
- ${DRONE_COMMIT_SHA:0:8}
|
|
||||||
- ${DRONE_COMMIT_BRANCH}
|
|
||||||
- latest
|
|
||||||
when:
|
|
||||||
event:
|
|
||||||
exclude:
|
|
||||||
- pull_request
|
|
||||||
- tag
|
|
||||||
|
|
||||||
- name: docker_build_and_push_selfhosted_tag
|
- name: docker_build_and_push_selfhosted_tag
|
||||||
image: plugins/docker
|
image: plugins/docker
|
||||||
settings:
|
settings:
|
||||||
|
@ -69,6 +58,34 @@ steps:
|
||||||
event:
|
event:
|
||||||
- tag
|
- tag
|
||||||
|
|
||||||
|
---
|
||||||
|
kind: pipeline
|
||||||
|
type: docker
|
||||||
|
name: dockerhub
|
||||||
|
environment:
|
||||||
|
http_proxy: http://192.168.2.43:9999 # für apt, zeigt auf docker10.grote.lan
|
||||||
|
depends_on: # bezieht sich auf linting pipeline
|
||||||
|
- linting
|
||||||
|
steps:
|
||||||
|
- name: docker_build_and_push_dockerhub
|
||||||
|
image: plugins/docker
|
||||||
|
settings:
|
||||||
|
username:
|
||||||
|
from_secret: DOCKERHUB_USER
|
||||||
|
password:
|
||||||
|
from_secret: DOCKERHUB_PASS
|
||||||
|
dockerfile: Dockerfile
|
||||||
|
repo: quotengrote/allzweckcontainer
|
||||||
|
tags:
|
||||||
|
- ${DRONE_COMMIT_SHA:0:8}
|
||||||
|
- ${DRONE_COMMIT_BRANCH}
|
||||||
|
- latest
|
||||||
|
when:
|
||||||
|
event:
|
||||||
|
exclude:
|
||||||
|
- pull_request
|
||||||
|
- tag
|
||||||
|
|
||||||
- name: docker_build_and_push_dockerhub_tag
|
- name: docker_build_and_push_dockerhub_tag
|
||||||
image: plugins/docker
|
image: plugins/docker
|
||||||
settings:
|
settings:
|
||||||
|
|
Loading…
Reference in a new issue