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

test: setup nightly test pipeline #50

Merged
merged 1 commit into from
Jun 1, 2021
Merged
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
47 changes: 47 additions & 0 deletions .pipelines/nightly.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
trigger: none

schedules:
- cron: "0 0 * * *"
always: true
displayName: "Nightly Test"
branches:
include:
- main

pool: Upstream Pool

jobs:
- job: scan_images
timeoutInMinutes: 10
workspace:
clean: all
steps:
- template: templates/publish-images.yaml
parameters:
publish: false
- job:
timeoutInMinutes: 40
dependsOn: scan_images
workspace:
clean: all
variables:
# we can enable actual tenant id for functional e2e
AZURE_TENANT_ID: "fake tenant id"
REGISTRY: upstreamk8sci.azurecr.io/aad-pod-managed-identity
SOAK_CLUSTER: "true"
strategy:
matrix:
soak_aks_windows_dockershim:
WINDOWS_CLUSTER: "true"
CLUSTER_NAME: "pmi-aks-win-dockershim"
soak_aks_windows_containerd:
WINDOWS_CLUSTER: "true"
CLUSTER_NAME: "pmi-aks-win-containerd"
soak_aks_linux:
CLUSTER_NAME: "pmi-aks-linux"
soak_arc:
ARC_CLUSTER: "true"
CLUSTER_NAME: "pmi-aks-arc"
steps:
- script: make test-e2e
displayName: Webhook E2E test suite