You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
384 B
25 lines
384 B
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: gradle
|
|
|
|
steps:
|
|
- name: test
|
|
image: gradle:8.3.0-jdk17-graal
|
|
commands:
|
|
- gradle assemble
|
|
- gradle check
|
|
|
|
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: maven
|
|
|
|
steps:
|
|
- name: test
|
|
image: maven:3.9.4-eclipse-temurin-17-alpine
|
|
commands:
|
|
- mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V
|
|
- mvn test -B
|
|
|