mirror of https://github.com/milvus-io/milvus.git
[skip e2e]Add retry for jenkinsfile checker (#15329)
Signed-off-by: Jenny Li <jing.li@zilliz.com>pull/15375/head
parent
3a024307f4
commit
c0b933207c
|
@ -7,6 +7,7 @@ on:
|
||||||
# file paths to consider in the event. Optional; defaults to all.
|
# file paths to consider in the event. Optional; defaults to all.
|
||||||
paths:
|
paths:
|
||||||
- 'build/ci/jenkins/**'
|
- 'build/ci/jenkins/**'
|
||||||
|
- '.github/workflows/jenkins-checker.yaml'
|
||||||
jobs:
|
jobs:
|
||||||
check-jenkinsfile:
|
check-jenkinsfile:
|
||||||
name: Jenkinsfile Checker
|
name: Jenkinsfile Checker
|
||||||
|
@ -23,7 +24,7 @@ jobs:
|
||||||
|
|
||||||
function validate(){
|
function validate(){
|
||||||
local file_path=${1:-Jenkinsfile}
|
local file_path=${1:-Jenkinsfile}
|
||||||
response=$(curl -X POST -H $JENKINS_CRUMB -F "jenkinsfile=<${file_path}" $JENKINS_URL/pipeline-model-converter/validate)
|
response=$(curl --max-time 10 --retry 5 --retry-delay 0 --retry-max-time 40 -X POST -H $JENKINS_CRUMB -F "jenkinsfile=<${file_path}" $JENKINS_URL/pipeline-model-converter/validate)
|
||||||
|
|
||||||
if [[ ${response} =~ "Error" ]]
|
if [[ ${response} =~ "Error" ]]
|
||||||
then
|
then
|
||||||
|
|
Loading…
Reference in New Issue