27 lines
622 B
YAML
27 lines
622 B
YAML
when:
|
|
event: [manual, push]
|
|
branch: main
|
|
path: [.woodpecker/build.yaml, pom.xml, src/**]
|
|
|
|
services:
|
|
- name: dockerd
|
|
image: kokuwaio/dockerd
|
|
ports: [2375, 8080]
|
|
|
|
steps:
|
|
|
|
build:
|
|
image: maven:3.9.9-eclipse-temurin-17
|
|
commands: mvn deploy --settings=.woodpecker/maven/settings.xml -Dmaven.test.redirectTestOutputToFile=true -X
|
|
environment:
|
|
NEXUS_USERNAME: {from_secret: nexus_username}
|
|
NEXUS_PASSWORD: {from_secret: nexus_password}
|
|
|
|
debug:
|
|
image: kokuwaio/dockerd
|
|
commands:
|
|
- docker ps --all
|
|
- docker logs keylcoak
|
|
- exit 1
|
|
when:
|
|
status: failure
|