Skip to content

Commit

Permalink
CI: enable mivlus related test (#767)
Browse files Browse the repository at this point in the history
Signed-off-by: Lianhao Lu <lianhao.lu@intel.com>
  • Loading branch information
lianhao authored Jan 27, 2025
1 parent b5e24b6 commit 5b2cca9
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/manual-helm-cd-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
if [[ "$file" == *"nv-values.yaml" ]] || [[ "$file" == *"hpa-values.yaml" ]] || [[ "$file" == *"/values.yaml" ]]; then
continue
fi
if [[ "$file" == *"variant_"* ]] || [[ "$file" == *"milvus"* ]]; then
if [[ "$file" == *"variant_"* ]]; then
continue
fi
filename=$(basename "$file" .yaml)
Expand All @@ -77,7 +77,7 @@ jobs:
if [[ "$file" == *"nv-values.yaml" ]] || [[ "$file" == *"hpa-values.yaml" ]] || [[ "$file" == *"/values.yaml" ]]; then
continue
fi
if [[ "$file" == *"variant_"* ]] || [[ "$file" == *"milvus"* ]]; then
if [[ "$file" == *"variant_"* ]]; then
continue
fi
filename=$(basename "$file" .yaml)
Expand All @@ -97,7 +97,7 @@ jobs:
if [[ "$file" == *"nv-values.yaml" ]] || [[ "$file" == *"hpa-values.yaml" ]] || [[ "$file" == *"/values.yaml" ]]; then
continue
fi
if [[ "$file" == *"variant_"* ]] || [[ "$file" == *"milvus"* ]]; then
if [[ "$file" == *"variant_"* ]]; then
continue
fi
filename=$(basename "$file" .yaml)
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-chart-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
if [[ "$file" == *"nv-values.yaml" ]] || [[ "$file" == *"hpa-values.yaml" ]] || [[ "$file" == *"/values.yaml" ]]; then
continue
fi
if [[ "$file" == *"variant_"* ]] || [[ "$file" == *"milvus"* ]]; then
if [[ "$file" == *"variant_"* ]]; then
continue
fi
filename=$(basename "$file" .yaml)
Expand All @@ -73,7 +73,7 @@ jobs:
if [[ "$file" == *"nv-values.yaml" ]] || [[ "$file" == *"hpa-values.yaml" ]] || [[ "$file" == *"/values.yaml" ]]; then
continue
fi
if [[ "$file" == *"variant_"* ]] || [[ "$file" == *"milvus"* ]]; then
if [[ "$file" == *"variant_"* ]]; then
continue
fi
filename=$(basename "$file" .yaml)
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/pr-chart-validate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
python-version: "3.x"
check-latest: true
- name: Set up chart-testing
uses: helm/chart-testing-action@v2.6.1
uses: helm/chart-testing-action@v2.7.0
- name: Run chart-testing (list-changed)
id: list-changed
run: |
Expand All @@ -53,5 +53,6 @@ jobs:
if: steps.list-changed.outputs.changed == 'true'
run: |
helm-charts/update_dependency.sh
helm repo add milvus https://zilliztech.github.io/milvus-helm
ct lint --check-version-increment=false --validate-maintainers=false --chart-dirs ${{ env.CHARTS_DIRS }} --target-branch ${{ github.event.repository.default_branch }}
ct lint --check-version-increment=false --validate-maintainers=false --chart-dirs ${{ env.CHARTS_DIRS }} --target-branch ${{ github.event.repository.default_branch }} \
--chart-repos milvus=https://zilliztech.github.io/milvus-helm \
--chart-repos qdrant=https://qdrant.github.io/qdrant-helm

0 comments on commit 5b2cca9

Please sign in to comment.