Skip to content
Snippets Groups Projects
Commit 202446e9 authored by OZGCloud's avatar OZGCloud
Browse files

OZG-3420 add dummy stages

parent 79616741
No related branches found
No related tags found
No related merge requests found
......@@ -188,6 +188,64 @@ pipeline {
}
}
stage('E2E') {
when {
not {
branch env.BRANCH_NAME
}
}
stages {
stage('Init k8s') {
steps {
script {
echo "Dummy stage"
}
}
}
stage('Install cypress') {
steps {
script {
echo "Dummy stage"
}
}
}
stage('Rollout E2E Namespaces') {
steps {
script {
echo "Dummy stage"
}
}
}
stage('Run E2E-Tests') {
failFast false
parallel {
stage('E2E-EA') {
steps {
script {
echo "Dummy stage"
}
}
}
stage('E2E-main') {
steps {
script {
echo "Dummy stage"
}
}
}
}
}
stage('Delete E2E Namespaces') {
steps {
script {
echo "Dummy stage"
}
}
}
}
}
stage('Trigger Test rollout') {
when {
branch 'release'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment