Added jenkins file for build testing

This commit is contained in:
Aditya Mehra 2021-02-27 16:40:02 +05:30 committed by GitHub
parent e54ba60296
commit ca1afb203a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 33 additions and 0 deletions

33
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,33 @@
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 {
sh(./scripts/br-patches.sh)
}
}
stage('Build Assets') {
agent any
steps {
make clean
make rpi4_64-gui
}
}
stage('Deploy Image'){
agent any
steps {
echo "To Be Implemented"
}
}
}
}