Skip to content

Commit

Permalink
enhance:[ci] allow to pass down make cmd
Browse files Browse the repository at this point in the history
Signed-off-by: Yellow Shine <[email protected]>
  • Loading branch information
yellow-shine committed Oct 22, 2024
1 parent 50607a5 commit adc7f3c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion ci/jenkins/Nightly2.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@Library('jenkins-shared-library@v0.61.0') _
@Library('jenkins-shared-library@v0.62.0') _

def pod = libraryResource 'io/milvus/pod/tekton-4am.yaml'

Expand Down Expand Up @@ -56,6 +56,7 @@ pipeline {
gitBaseRef: gitBaseRef,
pullRequestNumber: "$env.CHANGE_ID",
suppress_suffix_of_image_tag: true,
make_cmd: "make clean && make install USE_ASAN=OFF use_disk_index=ON",
images: '["milvus","pytest","helm"]',
tekton_log_timeout: '30m'

Expand Down
3 changes: 2 additions & 1 deletion ci/jenkins/PR-for-go-sdk.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@Library('jenkins-shared-library@v0.61.0') _
@Library('jenkins-shared-library@v0.62.0') _

def pod = libraryResource 'io/milvus/pod/tekton-4am.yaml'

Expand Down Expand Up @@ -46,6 +46,7 @@ pipeline {
gitBaseRef: gitBaseRef,
pullRequestNumber: "$env.CHANGE_ID",
suppress_suffix_of_image_tag: true,
make_cmd: "make clean && make install USE_ASAN=OFF use_disk_index=ON",
images: '["milvus","gotestsum","helm"]'

milvus_image_tag = tekton.query_result job_name, 'milvus-image-tag'
Expand Down
3 changes: 2 additions & 1 deletion ci/jenkins/PR.groovy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@Library('jenkins-shared-library@v0.61.0') _
@Library('jenkins-shared-library@v0.62.0') _

def pod = libraryResource 'io/milvus/pod/tekton-4am.yaml'
def milvus_helm_chart_version = '4.2.8'
Expand Down Expand Up @@ -43,6 +43,7 @@ pipeline {
gitBaseRef: gitBaseRef,
pullRequestNumber: "$env.CHANGE_ID",
suppress_suffix_of_image_tag: true,
make_cmd: "make clean && make install USE_ASAN=OFF use_disk_index=ON",
images: '["milvus","pytest","helm"]'

milvus_image_tag = tekton.query_result job_name, 'milvus-image-tag'
Expand Down

0 comments on commit adc7f3c

Please sign in to comment.