Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
sgalsaleh committed Jan 3, 2024
1 parent d33fbd0 commit e9a9101
Showing 1 changed file with 49 additions and 49 deletions.
98 changes: 49 additions & 49 deletions .github/workflows/build-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3879,60 +3879,60 @@ jobs:
# kots-dockerhub-password: '${{ secrets.E2E_DOCKERHUB_PASSWORD }}'


# validate-pr-tests:
# runs-on: ubuntu-20.04
# needs:
# # static and unit tests
# # - lint-web
# # - unit-test-web
# # - vet-kots
# # - ci-test-kots
# # # testim tests
# # - validate-existing-online-install-minimal
# # - validate-smoke-test
# # - validate-backup-and-restore
# # - validate-no-required-config
# # - validate-version-history-pagination
# # - validate-change-license
# # - validate-min-kots-version
# # - validate-target-kots-version
# # - validate-range-kots-version
# # - validate-multi-app-backup-and-restore
# # - validate-multi-app-install
# # - validate-airgap-smoke-test
# # - validate-config
# # - validate-support-bundle
# # - validate-gitops
# # non-testim tests
# # - validate-minimal-rbac
# # - validate-minimal-rbac-override
# # - validate-multi-namespace
# # - validate-kots-pull
# # - validate-app-version-label
# # - validate-helm-install-order
# # - validate-no-redeploy-on-restart
# # - validate-kubernetes-installer-preflight
# # - validate-kots-upgrade
# # - validate-remove-app
# - validate-registry-check
# # - validate-kots-helm-release-secret-migration
# # - validate-native-helm-v2
# # - validate-deployment-orchestration
# # - validate-replicated-sdk
# # - validate-strict-preflight-checks
# # cli-only tests
# # - validate-kots-push-images-anonymous
# steps:
# - run: echo "All PR tests passed"
validate-pr-tests:
runs-on: ubuntu-20.04
# needs:
# static and unit tests
# - lint-web
# - unit-test-web
# - vet-kots
# - ci-test-kots
# # testim tests
# - validate-existing-online-install-minimal
# - validate-smoke-test
# - validate-backup-and-restore
# - validate-no-required-config
# - validate-version-history-pagination
# - validate-change-license
# - validate-min-kots-version
# - validate-target-kots-version
# - validate-range-kots-version
# - validate-multi-app-backup-and-restore
# - validate-multi-app-install
# - validate-airgap-smoke-test
# - validate-config
# - validate-support-bundle
# - validate-gitops
# non-testim tests
# - validate-minimal-rbac
# - validate-minimal-rbac-override
# - validate-multi-namespace
# - validate-kots-pull
# - validate-app-version-label
# - validate-helm-install-order
# - validate-no-redeploy-on-restart
# - validate-kubernetes-installer-preflight
# - validate-kots-upgrade
# - validate-remove-app
# - validate-registry-check
# - validate-kots-helm-release-secret-migration
# - validate-native-helm-v2
# - validate-deployment-orchestration
# - validate-replicated-sdk
# - validate-strict-preflight-checks
# cli-only tests
# - validate-kots-push-images-anonymous
steps:
- run: echo "All PR tests passed"


# this job will validate that the kurl add-on validation did not fail and that all pr-tests succeed
# it is used for the github branch protection rule
validate-success:
runs-on: ubuntu-20.04
# needs:
# - validate-kurl-addon
# - validate-pr-tests
needs:
# - validate-kurl-addon
- validate-pr-tests
if: always()
steps:
# https://docs.github.com/en/actions/learn-github-actions/contexts#needs-context
Expand All @@ -3946,7 +3946,7 @@ jobs:
# run: exit 1
# if the validate-pr-tests job was successful, this job will succeed
- name: succeed if validate-pr-tests job succeeded
# if: needs.validate-pr-tests.result == 'success'
if: needs.validate-pr-tests.result == 'success'
run: echo "Validation succeeded"

dependabot:
Expand Down

0 comments on commit e9a9101

Please sign in to comment.