Fix DependencyResolver
[yangtools.git] / Jenkinsfile
1 pipeline {
2     agent {
3         node {
4             label "centos8-builder-4c-4g"
5         }
6     }
7
8     options {
9         timestamps()
10         timeout(360)
11     }
12
13     stages {
14         stage("Print ENV") {
15             steps {
16                 sh "printenv"
17             }
18         }
19
20         stage('mvn deploy') {
21             steps {
22                 lfJava(mvnSettings: 'yangtools-settings')
23             }
24         }
25
26         stage('post build') {
27             steps {
28                 lfInfraShipLogs{}
29             }
30         }
31     }
32 }