Skip to content

Commit

Permalink
add load data and verify data stages
Browse files Browse the repository at this point in the history
No-Issue
  • Loading branch information
chr-stian committed Nov 30, 2023
1 parent 769d09d commit 230a1e7
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .ci/aap_upgrade.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,17 @@ pipeline {
}
}

stage('Hub Load Data') {
steps {
container('aapqa-ansible') {
script {
stepsFactory.aapqaAutomationHubSteps.setup(installInfo)
stepsFactory.aapqaAutomationHubSteps.runAutomationHubLoadDataTests(installInfo)
stepsFactory.commonSteps.saveXUnitResultsToJenkins(xunitFile: 'ah-results-load.xml')
}
}
}
}

stage('Upgrade AAP 2.4') {
steps {
Expand Down Expand Up @@ -286,6 +297,19 @@ pipeline {
}
}

stage('Hub Verify Data Tests') {
steps {
container('aapqa-ansible') {
script {
upgradeFlags.add('input/install/flags/upgrade_from_aap_23.yml')
stepsFactory.aapqaAutomationHubSteps.setup(installInfo)
stepsFactory.aapqaAutomationHubSteps.runAutomationHubVerifyDataTests(installInfo + [upgradeVarFiles: upgradeFlags])
stepsFactory.commonSteps.saveXUnitResultsToJenkins(xunitFile: 'ah-results-verify.xml')
}
}
}
}

stage('Run AutomationHub Tests') {
steps {
container('aapqa-ansible') {
Expand Down

0 comments on commit 230a1e7

Please sign in to comment.