-
Notifications
You must be signed in to change notification settings - Fork 0
/
.drone.yml
65 lines (55 loc) · 976 Bytes
/
.drone.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
---
kind: pipeline
type: docker
name: run-tests
concurrency:
limit: 5
environment:
THANATOSNS_REDIS_URL: redis://redis:6379
THANATOSNS_DB_HOST: db
steps:
- name: test
image: python:3.10.12-slim-bullseye
commands:
- apt update
- apt install -y exiftool
- pip install pdm
- pdm install -G test
- cd thanatosns
- pdm run pytest
services:
- name: redis
image: redis:7.0.11
- name: db
image: postgres:15.3
environment:
POSTGRES_PASSWORD: postgres
trigger:
branch:
- main
event:
- push
- custom
---
kind: pipeline
type: docker
name: build-docker
steps:
- name: docker
image: plugins/kaniko:1.7.5-kaniko1.9.1
settings:
repo: 15cm/thanatosns
auto_tag: true
username:
from_secret: docker_username
password:
from_secret: docker_password
depends_on:
- run-tests
trigger:
branch:
- main
event:
- push
- custom
- tag