forked from DevotedMC/Citadel
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Jenkinsfile
46 lines (44 loc) · 909 Bytes
/
Jenkinsfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
@Library('civ_pipeline_lib')_
pipeline {
agent any
tools {
maven 'Maven 3.6.3'
jdk 'Java 8'
}
environment {
civ_dependent_plugins = "FactoryMod JukeAlert RailSwitch SimpleAdminHacks Bastion"
}
stages {
stage ('Build') {
steps {
civ_build_plugin()
}
}
stage ('Archive binaries') {
steps {
civ_archive_artifacts()
}
}
stage ('Archive javadoc') {
steps {
civ_archive_javadoc()
}
}
stage ('Aggregate reports') {
steps {
civ_aggregate_reports()
}
}
}
post {
always {
civ_post_always()
}
success {
civ_post_success()
}
failure {
civ_post_failure()
}
}
}