19 lines
484 B
Groovy
19 lines
484 B
Groovy
pipeline {
|
|
agent {
|
|
docker { image 'devkitpro/devkitppc' }
|
|
}
|
|
stages {
|
|
stage('Build') {
|
|
steps {
|
|
sh 'make'
|
|
}
|
|
}
|
|
stage('Archive') {
|
|
steps {
|
|
archiveArtifacts artifacts: 'boot.dol', fingerprint: true
|
|
archiveArtifacts artifacts: 'meta.xml', fingerprint: true
|
|
archiveArtifacts artifacts: 'icon.png', fingerprint: true
|
|
}
|
|
}
|
|
}
|
|
} |