convert all steps to use sh in jenkins

This commit is contained in:
Aditya Mehra 2021-02-27 16:56:01 +05:30 committed by GitHub
parent 2c4fd77b04
commit f225624140
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

10
Jenkinsfile vendored
View File

@ -6,21 +6,21 @@ pipeline {
agent any
steps {
echo 'Fetching Assets'
git submodule update --init --recursive
git submodule update --remote --merge
sh "git submodule update --init --recursive"
sh "git submodule update --remote --merge"
}
}
stage('Patch Assets') {
agent any
steps {
sh("./scripts/br-patches.sh")
sh "./scripts/br-patches.sh"
}
}
stage('Build Assets') {
agent any
steps {
make clean
make rpi4_64-gui
sh "make clean"
sh "make rpi4_64-gui"
}
}
stage('Deploy Image'){