Jenkins test 1

This commit is contained in:
Ethan Roseman 2020-08-15 00:12:23 -04:00
parent 1d3c037d9a
commit 507441fc30

23
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,23 @@
pipeline {
agent any
stages {
stage('Setup') {
steps {
sh 'cp /usr/local/etc/roms/baserom_pm.z64 baserom_original.z64'
sh 'make -j setup'
}
}
stage('Build') {
steps {
echo 'Building...'
sh 'make -j'
}
}
}
post {
always {
cleanWs()
}
}
}