1
0
mirror of https://github.com/LOOHP/Limbo.git synced 2026-06-07 13:31:43 +00:00

Delete Jenkinsfile

This commit is contained in:
LOOHP
2020-08-09 01:00:21 +08:00
committed by GitHub
parent e94ed4389d
commit ab643db72b
Vendored
-17
View File
@@ -1,17 +0,0 @@
pipeline {
agent none
stages{
stage('Build'){
agent {
docker {
image 'maven:3-alpine'
args '-v /root/.m2:/root/.m2'
}
}
steps {
sh 'mvn clean install'
stash includes: 'target/*.jar', name: 'targetfiles'
}
}
}
}