papermario/Jenkinsfile

24 lines
418 B
Plaintext
Raw Normal View History

2020-08-15 06:12:23 +02:00
pipeline {
agent any
stages {
stage('Setup') {
steps {
2020-08-15 06:20:15 +02:00
sh 'cp /usr/local/etc/roms/baserom_pm.z64 baserom.z64'
2020-08-15 06:16:19 +02:00
sh 'make setup'
2020-08-15 06:12:23 +02:00
}
}
stage('Build') {
steps {
echo 'Building...'
sh 'make -j'
}
}
}
post {
always {
cleanWs()
}
}
}