teach Jenkins how to be a ninja

This commit is contained in:
Alex Bates 2021-01-15 00:04:40 +00:00
parent 39f48335ff
commit cefae80da9

6
Jenkinsfile vendored
View File

@ -4,14 +4,12 @@ pipeline {
stages {
stage('Setup') {
steps {
sh 'cp /usr/local/etc/roms/baserom_pm.z64 baserom.z64'
sh 'make setup'
sh './configure.py --baserom /usr/local/etc/roms/baserom_pm.z64'
}
}
stage('Build') {
steps {
echo 'Building...'
sh 'make -j'
sh 'ninja'
}
}
stage('Report Progress') {