我想根据URL设置true / false条件。假设我的网址中有lst2
,如果没有,我想将条件设置为pipeline {
agent any
stages {
stage('before job starts') {
steps {
sh 'your_scripts.sh'
}
}
stage('the job') {
steps {
sh 'run_job.sh'
}
}
}
post {
always {
echo 'I will always run!'
}
}
}
,我想将其设置为/test/demo
。任何解决方案吗?
答案 0 :(得分:1)
您可以尝试如下操作:
let x = window.location.href.indexOf("/test/demo") !== -1
(评论后进行的编辑)