2021-02-27 12:10:02 +01:00
|
|
|
pipeline {
|
|
|
|
agent any
|
|
|
|
|
|
|
|
stages {
|
|
|
|
stage('Fetch Assets') {
|
|
|
|
agent any
|
|
|
|
steps {
|
|
|
|
echo 'Fetching Assets'
|
|
|
|
git submodule update --init --recursive
|
|
|
|
git submodule update --remote --merge
|
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('Patch Assets') {
|
|
|
|
agent any
|
|
|
|
steps {
|
2021-02-27 12:21:35 +01:00
|
|
|
sh("./scripts/br-patches.sh")
|
2021-02-27 12:10:02 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('Build Assets') {
|
|
|
|
agent any
|
|
|
|
steps {
|
|
|
|
make clean
|
|
|
|
make rpi4_64-gui
|
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('Deploy Image'){
|
|
|
|
agent any
|
|
|
|
steps {
|
|
|
|
echo "To Be Implemented"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|