You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- kind: pipeline
- type: docker
- name: build
-
- steps:
- - name: compile
- image: maven:3.8.6-amazoncorretto-17
- pull: if-not-exists
- volumes:
- - name: mvn_cache
- path: /root/.m2
- commands:
- - mvn clean package -DskipTests -Dmaven.javadoc.skip=true -B -V
-
-
- trigger:
- event:
- - push
-
- volumes:
- - name: mvn_cache # The name use in this pipeline,
- host:
- path: /root/.m2 # The path be used in the host.
|