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 { stages {
stage('Setup') { stage('Setup') {
steps { steps {
sh 'cp /usr/local/etc/roms/baserom_pm.z64 baserom.z64' sh './configure.py --baserom /usr/local/etc/roms/baserom_pm.z64'
sh 'make setup'
} }
} }
stage('Build') { stage('Build') {
steps { steps {
echo 'Building...' sh 'ninja'
sh 'make -j'
} }
} }
stage('Report Progress') { stage('Report Progress') {