2021-03-08 00:45:08 +00:00
|
|
|
pipeline {
|
2021-03-22 11:14:27 +00:00
|
|
|
agent {
|
|
|
|
label 'mm'
|
|
|
|
}
|
2021-03-08 00:45:08 +00:00
|
|
|
|
|
|
|
stages {
|
|
|
|
stage('Copy ROM') {
|
|
|
|
steps {
|
|
|
|
echo 'Setting up ROM...'
|
2021-03-10 02:55:17 +00:00
|
|
|
sh 'cp /usr/local/etc/roms/mm.us.rev1.z64 baserom.z64'
|
2021-03-08 00:45:08 +00:00
|
|
|
}
|
|
|
|
}
|
2021-03-11 04:03:58 +00:00
|
|
|
stage('Build') {
|
2021-03-08 00:45:08 +00:00
|
|
|
steps {
|
|
|
|
sh 'make -j init'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('Report Progress') {
|
|
|
|
when {
|
|
|
|
branch 'master'
|
|
|
|
}
|
|
|
|
steps {
|
2021-03-22 11:14:27 +00:00
|
|
|
sh 'mkdir reports'
|
|
|
|
sh 'python3 ./tools/progress.py csv >> reports/progress_mm.us.rev1.csv'
|
|
|
|
sh 'python3 ./tools/progress.py csv -m >> reports/progress_matching_mm.us.rev1.csv'
|
|
|
|
sh 'python3 ./tools/progress.py shield-json > reports/progress_shield_mm.us.rev1.json'
|
|
|
|
stash includes: 'reports/*', name: 'reports'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('Update Progress') {
|
|
|
|
when {
|
|
|
|
branch 'master'
|
|
|
|
}
|
|
|
|
agent{
|
|
|
|
label 'master'
|
|
|
|
}
|
|
|
|
steps {
|
|
|
|
unstash 'reports'
|
|
|
|
sh 'cat reports/progress_mm.us.rev1.csv >> /var/www/html/reports/progress_mm.us.rev1.csv'
|
|
|
|
sh 'cat reports/progress_matching_mm.us.rev1.csv >> /var/www/html/reports/progress_matching_mm.us.rev1.csv'
|
|
|
|
sh 'cat reports/progress_shield_mm.us.rev1.json > /var/www/html/reports/progress_shield_mm.us.rev1.json'
|
2021-03-08 00:45:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
post {
|
|
|
|
always {
|
|
|
|
cleanWs()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|