1
1
mirror of https://github.com/OpenVoiceOS/OpenVoiceOS synced 2024-12-11 16:45:33 +01:00
OpenVoiceOS/Jenkinsfile
2021-02-27 16:56:01 +05:30

34 lines
615 B
Groovy

pipeline {
agent any
stages {
stage('Fetch Assets') {
agent any
steps {
echo 'Fetching Assets'
sh "git submodule update --init --recursive"
sh "git submodule update --remote --merge"
}
}
stage('Patch Assets') {
agent any
steps {
sh "./scripts/br-patches.sh"
}
}
stage('Build Assets') {
agent any
steps {
sh "make clean"
sh "make rpi4_64-gui"
}
}
stage('Deploy Image'){
agent any
steps {
echo "To Be Implemented"
}
}
}
}