mentorenwahl/.drone.yml

49 lines
930 B
YAML
Raw Normal View History

2022-01-10 11:52:49 +00:00
---
kind: pipeline
type: docker
name: default
steps:
2022-01-11 17:33:41 +00:00
- name: shellcheck
image: koalaman/shellcheck-alpine
commands:
- cd scripts/
- find -name "*.sh" | xargs shellcheck
2022-01-11 17:53:21 +00:00
- name: env
image: alpine
commands:
- . .example.env
2022-01-15 18:18:10 +00:00
---
kind: pipeline
type: docker
2022-01-20 20:17:24 +00:00
name: api
2022-01-15 18:18:10 +00:00
steps:
- name: ameba
2022-01-10 12:59:03 +00:00
image: veelenga/ameba
commands:
2022-01-20 20:17:24 +00:00
- cd docker/api/
2022-01-11 17:33:41 +00:00
- ameba micrate/src/ src/
2022-01-15 18:18:10 +00:00
- name: pgsanity
2022-01-10 13:04:07 +00:00
image: boechat107/pgsanity
commands:
2022-01-20 20:17:24 +00:00
- cd docker/api/db/
2022-01-10 13:05:38 +00:00
- find -name "*.sql" | xargs pgsanity
2022-01-20 20:17:24 +00:00
- name: api
2022-01-10 12:43:23 +00:00
image: docker:dind
2022-01-10 12:25:59 +00:00
volumes:
- name: dockersock
path: /var/run/docker.sock
2022-01-10 12:16:48 +00:00
commands:
- cp .example.env .env
- cd docker/
2022-01-20 20:17:24 +00:00
- docker build --build-arg BUILD_ENV=development api
2022-01-10 12:59:03 +00:00
depends_on:
2022-01-15 18:18:10 +00:00
- ameba
- pgsanity
2022-01-10 12:25:59 +00:00
volumes:
- name: dockersock
host:
path: /var/run/docker.sock
2022-01-15 18:19:32 +00:00
depends_on:
- default