mirror of
https://github.com/Jackzmc/sourcemod-plugins.git
synced 2026-02-03 21:16:30 -06:00
30 lines
688 B
Groovy
30 lines
688 B
Groovy
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)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|