Skip to content

Commit

Permalink
ci: add helm chart validation to automation
Browse files Browse the repository at this point in the history
This change adds the Helm chart test(s) to GitHub Action CI.
  • Loading branch information
whoisj committed Jan 27, 2025
1 parent 2f696d4 commit 4b8c1b7
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/pre-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,25 @@ jobs:
- uses: pre-commit/[email protected]
timeout-minutes: 3

helm-chart-verification:
runs-on: ubuntu-latest
container:
image: ghcr.io/triton-inference-server/triton_distributed/helm-tester:0.1.1
options: --tty
volumes:
- ${{ github.workspace }}:/workspace
permissions:
contents: read
packages: read
steps:
- uses: actions/checkout@v4
# Allowlist both variants of the mounted source directory.
- run: git config --global --add safe.directory /__w/triton_distributed/triton_distributed
- run: git config --global --add safe.directory /workspace
- run: pwsh -c ./deploy/Kubernetes/worker/tests/trtllm/test-chart.ps1 --verbose
timeout-minutes: 2
working-directory: /workspace

# providers_validation:
# runs-on: ubuntu-latest
# container:
Expand Down

0 comments on commit 4b8c1b7

Please sign in to comment.