mirror of
https://github.com/pmret/papermario.git
synced 2024-11-08 20:12:30 +01:00
24 lines
418 B
Groovy
24 lines
418 B
Groovy
pipeline {
|
|
agent any
|
|
|
|
stages {
|
|
stage('Setup') {
|
|
steps {
|
|
sh 'cp /usr/local/etc/roms/baserom_pm.z64 baserom.z64'
|
|
sh 'make setup'
|
|
}
|
|
}
|
|
stage('Build') {
|
|
steps {
|
|
echo 'Building...'
|
|
sh 'make -j'
|
|
}
|
|
}
|
|
}
|
|
post {
|
|
always {
|
|
cleanWs()
|
|
}
|
|
}
|
|
}
|