forked from Jackzmc/sourcemod-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJenkinsfile
More file actions
30 lines (28 loc) · 688 Bytes
/
Jenkinsfile
File metadata and controls
30 lines (28 loc) · 688 Bytes
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
pipeline {
agent {
docker {
image 'jackzmc/spcomp:debian-1.12-git7202'
reuseNode true
}
}
stages {
stage("Build Plugins") {
agent {
docker {
image 'jackzmc/spcomp:debian-1.12-git7202'
reuseNode true
}
}
steps {
sh '/sourcemod/compile_jenkins.sh'
}
post {
success {
dir("plugins") {
archiveArtifacts(artifacts: '*.smx', fingerprint: true)
}
}
}
}
}
}