papermario/Jenkinsfile

40 lines
858 B
Groovy

def agentLabel
if (BRANCH_NAME == "master") {
agentLabel = "master"
} else {
agentLabel = "papermario"
}
pipeline {
agent {
label agentLabel
}
stages {
stage('Setup') {
steps {
sh './configure.py --baserom /usr/local/etc/roms/papermario.us.z64'
}
}
stage('Build') {
steps {
sh 'ninja'
}
}
stage('Report Progress') {
when {
branch 'master'
}
steps {
sh 'python3 progress.py --csv >> /var/www/papermar.io/html/reports/progress.csv'
sh 'python3 progress.py --shield-json > /var/www/papermar.io/html/reports/progress_shield.json'
}
}
}
post {
always {
cleanWs()
}
}
}