another try
This commit is contained in:
parent
18f0e218f2
commit
7c896673ee
1 changed files with 4 additions and 2 deletions
6
Jenkinsfile
vendored
6
Jenkinsfile
vendored
|
|
@ -55,7 +55,6 @@ pipeline {
|
|||
credentialsId: 'devops-mycroft',
|
||||
url: 'https://github.com/mycroftAI/mimic3.git'
|
||||
|
||||
env.MIMIC3_TAG_NAME = sh(returnStdout: true, script: "git tag --sort=-creatordate | head -n 1").trim()
|
||||
|
||||
// Mycroft TTS plugin
|
||||
dir('plugin-tts-mimic3') {
|
||||
|
|
@ -64,7 +63,10 @@ pipeline {
|
|||
url: 'https://github.com/mycroftAI/plugin-tts-mimic3'
|
||||
}
|
||||
|
||||
env.PLUGIN_TAG_NAME = sh(returnStdout: true, script: "cd plugin-tts-mimic3 && git tag --sort=-creatordate | head -n 1").trim()
|
||||
script {
|
||||
env.MIMIC3_TAG_NAME = sh(returnStdout: true, script: "git tag --sort=-creatordate | head -n 1").trim()
|
||||
env.PLUGIN_TAG_NAME = sh(returnStdout: true, script: "cd plugin-tts-mimic3 && git tag --sort=-creatordate | head -n 1").trim()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue