Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable checkpoint for all CI jobs #1289

Merged
merged 5 commits into from
Jan 12, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/actions/run-acceptance-test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ runs:
if [ "${{ github.job }}" == "smoke-tests-long" ]; then
export GIT_PROVIDER="${{ inputs.git-provider }}"
fi
export CHECKPOINT_DISABLE=1
ginkgo ${{ inputs.focus-or-skip }} --randomizeSuites --reportFile=${{ env.ARTIFACTS_BASE_DIR }}/${{ inputs.result-prefix }}acceptance-test-results.xml -v ./test/acceptance/test/...
if: always()
- name: Store acceptance test results
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@ jobs:
export WEGO_BIN_PATH=$(pwd)/bin/gitops
go get github.com/onsi/ginkgo/ginkgo
go get github.com/onsi/gomega
export CHECKPOINT_DISABLE=1
ginkgo --randomizeSuites --reportFile=${{ env. ARTIFACTS_BASE_DIR }}/test-results/acceptance-test-results.xml -v ./test/acceptance/test/...
- name: Store acceptance-tests results
uses: actions/upload-artifact@v2
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ jobs:
$WEGO_BIN_PATH flux uninstall --silent
$WEGO_BIN_PATH flux uninstall --namespace test-namespace --silent
kubectl get all --all-namespaces -o wide
export CHECKPOINT_DISABLE=1
ginkgo --reportFile=${{ env.ARTIFACTS_BASE_DIR }}/test-results/acceptance-test-results.xml --skip=@skipOnNightly -v ./test/acceptance/test/...
if: always()
- name: Store acceptance test results
Expand Down Expand Up @@ -258,6 +259,7 @@ jobs:
$WEGO_BIN_PATH flux uninstall --silent
$WEGO_BIN_PATH flux uninstall --namespace test-namespace --silent
kubectl get all --all-namespaces -o wide
export CHECKPOINT_DISABLE=1
ginkgo --reportFile=${{ env.ARTIFACTS_BASE_DIR }}/test-results/acceptance-test-results.xml --skip=@skipOnNightly -v ./test/acceptance/test/...
if: always()
- name: Store acceptance test results
Expand Down