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 all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
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 @@ -103,6 +103,7 @@ runs:
GITLAB_TOKEN: ${{ inputs.gitlab-token }}
GITLAB_KEY: ${{ inputs.gitlab-key }}
ARTIFACTS_BASE_DIR: ${{ inputs.artifacts-base-dir }}
CHECKPOINT_DISABLE: 1
run: |
export PATH=${PATH}:`go env GOPATH`/bin
export WEGO_BIN_PATH=$(pwd)/bin/gitops
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ jobs:
env:
GITHUB_TOKEN: "${{ secrets.WEAVE_GITOPS_TEST_WEAVEWORKS_WEAVE_GITOPS_BOT_TOKEN }}"
KUBEBUILDER_ASSETS: ${{ github.workspace }}/kubebuilder/bin
CHECKPOINT_DISABLE: 1
runs-on: ubuntu-latest
steps:
- name: Install Go
Expand Down Expand Up @@ -91,6 +92,7 @@ jobs:
GITLAB_TOKEN: ${{ secrets.GITLAB_TOKEN }}
GITLAB_KEY: ${{ secrets.GITLAB_KEY }}
ARTIFACTS_BASE_DIR: "/tmp/gitops-test"
CHECKPOINT_DISABLE: 1
steps:
- name: Install Go
uses: actions/setup-go@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 @@ -44,6 +44,7 @@ jobs:
GITLAB_TOKEN: ${{ secrets.GITLAB_TOKEN }}
GITLAB_KEY: ${{ secrets.GITLAB_KEY }}
ARTIFACTS_BASE_DIR: "/tmp/gitops-test"
CHECKPOINT_DISABLE: 1
steps:
- name: Install Go
uses: actions/setup-go@v2
Expand Down Expand Up @@ -165,6 +166,7 @@ jobs:
GITLAB_TOKEN: ${{ secrets.GITLAB_TOKEN }}
GITLAB_KEY: ${{ secrets.GITLAB_KEY }}
ARTIFACTS_BASE_DIR: "/tmp/gitops-test"
CHECKPOINT_DISABLE: 1
steps:
- name: Install Go
uses: actions/setup-go@v2
Expand Down
2 changes: 2 additions & 0 deletions test/acceptance/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ To run github tests on gitlab repos, export the following variable before runnin
export GIT_PROVIDER=gitlab
```

To add tests that require the creation of **multiple clusters**, please add a `@skipOnNightly` tag to the test in order to prevent Nightly Test failures. Our Nightly Tests run on standing clusters (EKS, GKE), and this test setup does not support creating multiple clusters on the fly.

# Smoke Tests

To run the **smoke tests** from the suite, run the following the command from the repo root directory.
Expand Down