-
Notifications
You must be signed in to change notification settings - Fork 4
/
.drone.yml
77 lines (69 loc) · 1.85 KB
/
.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
65
66
67
68
69
70
71
72
73
74
75
76
77
kind: pipeline
type: docker
name: default
trigger:
branch: [master]
clone:
retries: 3
depth: 1
volumes:
- name: dockersock
host:
path: /var/run/docker.sock
- name: gradle-cache
host:
path: /srv/gradle/caches
- name: gradle-config
host:
path: /srv/gradle/config
- name: application-config
host:
path: /srv/kenko-drive/config
services:
- name: redis
image: redis:7-alpine
steps:
- name: Gradle Build and Create Cache
image: bellsoft/liberica-runtime-container:jdk-21-slim-musl
volumes:
- name: gradle-cache
path: /root/.gradle
- name: gradle-config
path: /gradle-config
commands:
- cp /gradle-config/gradle.properties /root/.gradle/gradle.properties
- chmod +x ./gradlew
- ./gradlew assemble -i
- name: Gradle Test
image: bellsoft/liberica-runtime-container:jdk-21-slim-musl
failure: ignore
volumes:
- name: gradle-cache
path: /root/.gradle
- name: gradle-config
path: /gradle-config
commands:
- cp /gradle-config/gradle.properties /root/.gradle/gradle.properties
- chmod +x ./gradlew
- ./gradlew test -i
- name: Build Jar Package
image: bellsoft/liberica-runtime-container:jdk-21-slim-musl
volumes:
- name: gradle-cache
path: /root/.gradle
- name: gradle-config
path: /gradle-config
commands:
- cp /gradle-config/gradle.properties /root/.gradle/gradle.properties
- chmod +x ./gradlew
- rm app/build/libs/*.jar
- ./gradlew bootJar -i
- name: Build and Deploy container
image: docker:dind
volumes:
- name: dockersock
path: /var/run/docker.sock
- name: application-config
path: /drone/src/config
commands:
- docker compose -p kenko-drive -f docker-compose-drone.yaml up -d --build application