mirror of
https://github.com/OpenVoiceOS/OpenVoiceOS
synced 2024-12-23 15:37:42 +01:00
convert all steps to use sh in jenkins
This commit is contained in:
parent
2c4fd77b04
commit
f225624140
10
Jenkinsfile
vendored
10
Jenkinsfile
vendored
@ -6,21 +6,21 @@ pipeline {
|
|||||||
agent any
|
agent any
|
||||||
steps {
|
steps {
|
||||||
echo 'Fetching Assets'
|
echo 'Fetching Assets'
|
||||||
git submodule update --init --recursive
|
sh "git submodule update --init --recursive"
|
||||||
git submodule update --remote --merge
|
sh "git submodule update --remote --merge"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Patch Assets') {
|
stage('Patch Assets') {
|
||||||
agent any
|
agent any
|
||||||
steps {
|
steps {
|
||||||
sh("./scripts/br-patches.sh")
|
sh "./scripts/br-patches.sh"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Build Assets') {
|
stage('Build Assets') {
|
||||||
agent any
|
agent any
|
||||||
steps {
|
steps {
|
||||||
make clean
|
sh "make clean"
|
||||||
make rpi4_64-gui
|
sh "make rpi4_64-gui"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Deploy Image'){
|
stage('Deploy Image'){
|
||||||
|
Loading…
Reference in New Issue
Block a user