Skip to content

Commit

Permalink
PSMDB-1482 added 8.0 (#2886)
Browse files Browse the repository at this point in the history
  • Loading branch information
olexandr-havryliak authored Sep 25, 2024
1 parent 419bedc commit cd56376
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion pbm/pbm-functional-aws-rs.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ pipeline {
}
parameters {
string(name: 'BRANCH',description: 'PBM repo branch',defaultValue: 'main')
choice(name: 'PSMDB',description: 'PSMDB for testing',choices: ['psmdb-70','psmdb-60','psmdb-50'])
choice(name: 'PSMDB',description: 'PSMDB for testing',choices: ['psmdb-70','psmdb-60','psmdb-50','psmdb-80'])
choice(name: 'INSTANCE_TYPE',description: 'Ec2 instance type',choices: ['i3.large','i3en.large','t2.micro','i3.xlarge','i3en.xlarge','i3en.3xlarge'])
choice(name: 'BACKUP_TYPE',description: 'Backup type',choices: ['physical','logical'])
choice(name: 'STORAGE',description: 'Storage for PBM',choices: ['aws','gcp','azure'])
Expand Down
2 changes: 1 addition & 1 deletion pbm/pbm-functional-aws-sharded.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ pipeline {
}
parameters {
string(name: 'BRANCH',description: 'PBM repo branch',defaultValue: 'main')
choice(name: 'PSMDB',description: 'PSMDB for testing',choices: ['psmdb-70','psmdb-60','psmdb-50'])
choice(name: 'PSMDB',description: 'PSMDB for testing',choices: ['psmdb-70','psmdb-60','psmdb-50','psmdb-80'])
choice(name: 'INSTANCE_TYPE',description: 'Ec2 instance type',choices: ['i3.large','i3en.large','t2.micro','i3.xlarge','i3en.xlarge'])
choice(name: 'BACKUP_TYPE',description: 'Backup type',choices: ['physical','logical'])
choice(name: 'STORAGE',description: 'Storage for PBM',choices: ['aws','gcp','azure'])
Expand Down
10 changes: 5 additions & 5 deletions pbm/pbm-functional-tests-full.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ pipeline {
}
axis {
name 'PSMDB'
values '5.0', '6.0', '7.0'
values '5.0', '6.0', '7.0', '8.0'
}
}
stages {
Expand All @@ -60,10 +60,10 @@ pipeline {
git poll: false, branch: params.TESTING_BRANCH, url: 'https://github.com/Percona-QA/psmdb-testing.git'
sh """
cd pbm-functional/pytest
PSMDB=percona/percona-server-mongodb:${PSMDB}-multi docker-compose build
docker-compose up -d
docker-compose run test pytest -s --junitxml=junit.xml -k ${TEST} || true
docker-compose down -v --remove-orphans
PSMDB=perconalab/percona-server-mongodb:${PSMDB} docker compose build
docker compose up -d
docker compose run test pytest -s --junitxml=junit.xml -k ${TEST} || true
docker compose down -v --remove-orphans
curl -H "Content-Type:multipart/form-data" -H "Authorization: Bearer ${ZEPHYR_TOKEN}" -F "[email protected];type=application/xml" 'https://api.zephyrscale.smartbear.com/v2/automations/executions/junit?projectKey=PBM' -F 'testCycle={"name":"${JOB_NAME}-${BUILD_NUMBER}","customFields": { "PBM branch": "${PBM_BRANCH}","PSMDB docker image": "percona/percona-server-mongodb:${PSMDB}-multi","instance": "${instance}"}};type=application/json' -i || true
"""
}
Expand Down

0 comments on commit cd56376

Please sign in to comment.