@@ -32,56 +32,56 @@ jobs:
32
32
ref : ${{ github.event.pull_request.head.sha }}
33
33
secrets : inherit
34
34
35
- chart_validation :
36
- needs : [publish_images]
37
- runs-on : ubuntu-latest
38
- env :
39
- CLUSTER_NAME : chart-testing
40
- RELEASE_NAME : ci-test
41
- steps :
42
- - name : Checkout the repo
43
- uses : actions/checkout@v4
44
- with :
45
- ref : ${{ github.event.pull_request.head.sha }}
35
+ # chart_validation:
36
+ # needs: [publish_images]
37
+ # runs-on: ubuntu-latest
38
+ # env:
39
+ # CLUSTER_NAME: chart-testing
40
+ # RELEASE_NAME: ci-test
41
+ # steps:
42
+ # - name: Checkout the repo
43
+ # uses: actions/checkout@v4
44
+ # with:
45
+ # ref: ${{ github.event.pull_request.head.sha }}
46
46
47
- - name : Run Gradio app tests
48
- run : |
49
- ./test-images.sh $(git rev-parse --short ${{ github.event.pull_request.head.sha }})
50
- working-directory : web-apps
47
+ # - name: Run Gradio app tests
48
+ # run: |
49
+ # ./test-images.sh $(git rev-parse --short ${{ github.event.pull_request.head.sha }})
50
+ # working-directory: web-apps
51
51
52
- - name : Install Helm
53
- uses : azure/setup-helm@v4
52
+ # - name: Install Helm
53
+ # uses: azure/setup-helm@v4
54
54
55
- - name : Run base chart templating with default values
56
- run : helm template ci-test charts/azimuth-llm
55
+ # - name: Run base chart templating with default values
56
+ # run: helm template ci-test charts/azimuth-llm
57
57
58
- - name : Set up chart testing
59
- uses : helm/chart-testing-action@v2
58
+ # - name: Set up chart testing
59
+ # uses: helm/chart-testing-action@v2
60
60
61
- - name : Run chart linting
62
- run : ct lint --config ct.yaml
61
+ # - name: Run chart linting
62
+ # run: ct lint --config ct.yaml
63
63
64
- - name : Create Kind Cluster
65
- uses : helm/kind-action@v1
66
- with :
67
- cluster_name : ${{ env.CLUSTER_NAME }}
64
+ # - name: Create Kind Cluster
65
+ # uses: helm/kind-action@v1
66
+ # with:
67
+ # cluster_name: ${{ env.CLUSTER_NAME }}
68
68
69
- # NOTE(scott): Since the local Chart.yaml uses "appVersion: latest" and this
70
- # only gets overwritten to the correct commit SHA during Helm chart build,
71
- # we need to pull these published images and load them into the kind cluster
72
- # with the tag correct tag.
73
- - name : Load tagged container images into kind cluster
74
- run : ./kind-images.sh $(git rev-parse --short ${{ github.event.pull_request.head.sha }}) ${{ env.CLUSTER_NAME }}
75
- working-directory : web-apps
69
+ # # NOTE(scott): Since the local Chart.yaml uses "appVersion: latest" and this
70
+ # # only gets overwritten to the correct commit SHA during Helm chart build,
71
+ # # we need to pull these published images and load them into the kind cluster
72
+ # # with the tag correct tag.
73
+ # - name: Load tagged container images into kind cluster
74
+ # run: ./kind-images.sh $(git rev-parse --short ${{ github.event.pull_request.head.sha }}) ${{ env.CLUSTER_NAME }}
75
+ # working-directory: web-apps
76
76
77
- # https://github.com/helm/charts/blob/master/test/README.md#providing-custom-test-values
78
- # Each chart/ci/*-values.yaml file will be treated as a separate test case with it's
79
- # own helm install/test process.
80
- - name : Run chart install and test
81
- run : ct install --config ct.yaml
77
+ # # https://github.com/helm/charts/blob/master/test/README.md#providing-custom-test-values
78
+ # # Each chart/ci/*-values.yaml file will be treated as a separate test case with it's
79
+ # # own helm install/test process.
80
+ # - name: Run chart install and test
81
+ # run: ct install --config ct.yaml
82
82
83
83
publish_charts :
84
- needs : [chart_validation ]
84
+ needs : [publish_images ]
85
85
uses : ./.github/workflows/build-push-charts.yml
86
86
with :
87
87
ref : ${{ github.event.pull_request.head.sha }}
0 commit comments