-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: ci chart testing * chore: test install * chore: test install * chore: test install * chore: set 'ct lint validate-maintainers=false' * fix: run script symbol * fix: charts dir notfound * refactor: Modify ci test * chore: ready for review
- Loading branch information
1 parent
b326eb4
commit 75b9bb7
Showing
3 changed files
with
14 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,14 +42,15 @@ jobs: | |
- name: Run chart-testing (lint) | ||
if: steps.list-changed.outputs.changed == 'true' | ||
run: ct lint --target-branch ${{ github.event.repository.default_branch }} | ||
run: ct lint --validate-maintainers=false --target-branch ${{ github.event.repository.default_branch }} | ||
|
||
- name: Create kind cluster | ||
if: steps.list-changed.outputs.changed == 'true' | ||
uses: helm/[email protected] | ||
with: | ||
wait: 120s | ||
|
||
- name: Run chart-testing (install) | ||
- name: Run e2e | ||
if: steps.list-changed.outputs.changed == 'true' | ||
run: ct install --chart-dirs charts --target-branch ${{ github.event.repository.default_branch }} | ||
run: | | ||
make e2e |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: E2E Test | ||
name: E2E | ||
|
||
on: | ||
workflow_dispatch: | ||
|
@@ -23,10 +23,10 @@ jobs: | |
with: | ||
version: v3.12.1 | ||
|
||
- name: Setup e2e environment | ||
shell: bash | ||
run: | | ||
.github/scripts/setup-e2e-env.sh | ||
- name: Create kind cluster | ||
uses: helm/[email protected] | ||
with: | ||
wait: 120s | ||
|
||
- name: Deploy greptimedb-cluster chart | ||
if: ${{ github.event.inputs.chart == 'greptimedb-cluster' }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters