-
Notifications
You must be signed in to change notification settings - Fork 269
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor .github/workflows/lint-test.yaml to use a matrix for generat…
…ing jobs for each test case Signed-off-by: jessebot <[email protected]>
- Loading branch information
Showing
1 changed file
with
24 additions
and
40 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 |
---|---|---|
|
@@ -56,49 +56,28 @@ jobs: | |
if: steps.list-changed.outputs.changed == 'true' | ||
run: ct lint --target-branch ${{ github.event.repository.default_branch }} | ||
|
||
test-internal-database: | ||
run-tests: | ||
runs-on: ubuntu-22.04 | ||
needs: [changes, lint] | ||
if: needs.changes.outputs.src != 'false' | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
strategy: | ||
matrix: | ||
test_cases: | ||
# test the plain helm chart with nothing changed | ||
- name: 'Default - no custom values' | ||
|
||
- name: Install Helm | ||
uses: azure/setup-helm@v4 | ||
with: | ||
version: v3.14.4 | ||
# test the helm chart with postgresql subchart enabled | ||
- name: PostgreSQL Enabled | ||
helm_args: '--helm-extra-set-args "--set=postgresql.enabled=true --set=postgresql.global.postgresql.auth.password=testing123456 --set=internalDatabase.enabled=false --set=externalDatabase.enabled=True --set=externalDatabase.type=postgresql --set=externalDatabase.password=testing12345"' | ||
|
||
- name: Add dependency chart repos | ||
run: | | ||
helm repo add bitnami https://charts.bitnami.com/bitnami | ||
# test the helm chart with nginx container enabled | ||
- name: Nginx Enabled | ||
helm_args: '--helm-extra-set-args "--set=image.flavor=fpm --set=nginx.enabled=true"' | ||
|
||
- name: Set up chart-testing | ||
uses: helm/[email protected] | ||
# test the helm chart with horizontal pod autoscaling enabled | ||
- name: Horizontal Pod Autoscaling Enabled | ||
helm_args: '--helm-extra-set-args "--set=hpa.enabled=true --set=hpa.minPods=1 --set=hpa.maxPods=3 --set=hpa.targetCPUUtilizationPercentage=75"' | ||
|
||
- name: Run chart-testing (list-changed) | ||
id: list-changed | ||
run: | | ||
changed=$(ct list-changed --target-branch ${{ github.event.repository.default_branch }}) | ||
if [[ -n "$changed" ]]; then | ||
echo "changed=true" >> "$GITHUB_OUTPUT" | ||
fi | ||
- name: Create kind cluster | ||
uses: helm/[email protected] | ||
if: steps.list-changed.outputs.changed == 'true' | ||
|
||
- name: Run chart-testing (install) | ||
id: install | ||
if: steps.list-changed.outputs.changed == 'true' | ||
run: ct install --target-branch ${{ github.event.repository.default_branch }} | ||
|
||
test-postgresql-database: | ||
runs-on: ubuntu-22.04 | ||
needs: [changes, lint] | ||
if: needs.changes.outputs.src != 'false' | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
@@ -129,9 +108,14 @@ jobs: | |
uses: helm/[email protected] | ||
if: steps.list-changed.outputs.changed == 'true' | ||
|
||
- name: Run chart-testing (install) | ||
- name: Run chart-testing (install ${{ matrix.test_cases.name }}) | ||
id: install | ||
if: steps.list-changed.outputs.changed == 'true' | ||
run: | | ||
ct install --target-branch ${{ github.event.repository.default_branch }} \ | ||
--helm-extra-set-args "--set=postgresql.enabled=true --set=postgresql.global.postgresql.auth.password=testing123456 --set=internalDatabase.enabled=false --set=externalDatabase.enabled=True --set=externalDatabase.type=postgresql --set=externalDatabase.password=testing123456" | ||
run: ct install --target-branch ${{ github.event.repository.default_branch }} ${{ matrix.test_cases.helm_args }} | ||
|
||
summary: | ||
runs-on: ubuntu-22.04 | ||
needs: changes | ||
steps: | ||
- name: Summary | ||
run: echo "All done! 🎉" |