mezzotre/.drone.yml

52 lines
1.1 KiB
YAML
Raw Normal View History

2023-03-26 22:44:17 +02:00
kind: pipeline
type: docker
name: default
steps:
2023-03-27 13:19:58 +02:00
- name: Static checks
image: eclipse-temurin:17-jdk
commands:
- apt-get update -qq && apt-get install python3 pip && pip install pre-commit
- pre-commit run --all-files
2023-03-27 10:38:49 +02:00
- name: UT & IT Tests
2023-03-27 09:24:36 +02:00
image: quay.io/testcontainers/dind-drone-plugin
2023-03-27 09:38:45 +02:00
environment:
CI_WORKSPACE: "/drone/src"
settings:
2023-03-27 10:25:22 +02:00
cmd: ./mvnw -B test
2023-03-27 09:38:45 +02:00
build_image: eclipse-temurin:17-jdk
prefetch_images:
- "postgres:13-alpine"
volumes:
- name: dockersock
path: /var/run
2023-03-27 10:39:59 +02:00
- name: Packaging
image: eclipse-temurin:17-jdk
commands:
- ./mvnw package -B -DskipTests=true
2023-03-27 10:43:27 +02:00
depends_on:
- UT & IT Tests
2023-03-27 13:23:42 +02:00
- Static checks
2023-03-27 10:38:49 +02:00
- name: Docker image
image: thegeeklab/drone-docker-buildx:23
privileged: true
settings:
pull_image: true
dry_run: true
2023-03-27 10:43:27 +02:00
depends_on:
- UT & IT Tests
2023-03-27 13:23:42 +02:00
- Static checks
2023-03-27 09:38:45 +02:00
# Specify docker:dind as a service
services:
- name: docker
image: docker:dind
privileged: true
volumes:
- name: dockersock
path: /var/run
volumes:
- name: dockersock
2023-03-27 13:19:58 +02:00
temp: {}