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

make the acceptance test run for stable branches 0.49.x and 1.0.x #1738

Merged
merged 2 commits into from
Nov 17, 2022
Merged
Changes from 1 commit
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
35 changes: 27 additions & 8 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1287,8 +1287,7 @@ workflows:
- cleanup-azure-resources
- cleanup-eks-resources


nightly-acceptance-tests-release:
nightly-acceptance-tests-release-0.49.x:
description: |
Tests which run on a release branch nightly. These exist separate from the main
acceptance tests so that they can run at their own cadence, but
Expand Down Expand Up @@ -1316,18 +1315,38 @@ workflows:
- acceptance-gke-cni-1-23:
requires:
- acceptance-gke-1-23
- acceptance-eks-1-21:
- acceptance-tproxy:
requires:
- dev-upload-docker
- acceptance-eks-cni-1-21:

nightly-acceptance-tests-release-1.0.x:
description: |
Tests which run on a release branch nightly. These exist separate from the main
acceptance tests so that they can run at their own cadence, but
contains the same sequence of jobs.
triggers:
- schedule:
cron: "0 0 * * *" # Run at 12 am UTC (5 pm PST)
filters:
branches:
only:
- release/1.0.x
jobs:
- build-distro:
OS: "linux"
ARCH: "amd64 arm64"
name: build-distros-linux
- dev-upload-docker:
requires:
- acceptance-eks-1-21
- acceptance-aks-1-22:
- build-distros-linux
# Disable until we can use UBI images.
# - acceptance-openshift
- acceptance-gke-1-23:
requires:
- dev-upload-docker
- acceptance-aks-cni-1-22:
- acceptance-gke-cni-1-23:
requires:
- acceptance-aks-1-22
- acceptance-gke-1-23
- acceptance-tproxy:
requires:
- dev-upload-docker
Expand Down