PS-11200 Support running PXB tests from release branches#1157
Open
tplavcic wants to merge 15 commits into
Open
PS-11200 Support running PXB tests from release branches#1157tplavcic wants to merge 15 commits into
tplavcic wants to merge 15 commits into
Conversation
This reverts commit 8c1bca7.
There was a problem hiding this comment.
Pull request overview
This PR updates the PXB Molecule scenarios to support running tests against branch-built (unreleased) PXB artifacts when jobs are triggered from release branches, while keeping the “old” PXB reference as a released download for upgrade coverage.
Changes:
- Add OS-family-aware selection of branch-built PXB tarball URLs and conditionally download the branch artifact instead of the released tarball.
- Switch
server-qacheckout in multiple scenarios from a feature branch tomain. - Improve the
pxb-new-ps-inc-backup-loadscenario’s prepare and EC2 config (SSH keys handling, OpenSSL devel pinning, broader EPEL enablement for sysbench, updated OL9 EC2 settings).
Reviewed changes
Copilot reviewed 9 out of 9 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| molecule/pxb-new-ps-upgrade/tasks/main.yml | Select per-OS branch artifact URL; override tarball names; skip released download when branch artifact is provided. |
| molecule/pxb-new-ps-upgrade/playbooks/prepare.yml | Switch server-qa checkout to main (plus minor formatting). |
| molecule/pxb-new-ps-replication/tasks/main.yml | Same branch-artifact selection/override/download gating as upgrade scenario. |
| molecule/pxb-new-ps-replication/playbooks/prepare.yml | Switch server-qa checkout to main (plus minor formatting). |
| molecule/pxb-new-ps-innodb-rocksdb/tasks/main.yml | Same branch-artifact selection/override/download gating as other scenarios. |
| molecule/pxb-new-ps-innodb-rocksdb/playbooks/prepare.yml | Switch server-qa checkout to main (plus minor formatting). |
| molecule/pxb-new-ps-inc-backup-load/tasks/main.yml | Same branch-artifact selection/override/download gating as other scenarios. |
| molecule/pxb-new-ps-inc-backup-load/playbooks/prepare.yml | Adjust SSH key setup, pin openssl-devel to installed openssl-libs, enable EPEL for 8/9/10, and switch server-qa to main. |
| molecule/pxb-new-ps-inc-backup-load/molecule/oracle-9/molecule.yml | Update region/AMI/subnet for OL9 Molecule EC2 platform. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+14
to
+17
| when: | ||
| - ansible_os_family == "RedHat" | ||
| - ansible_distribution not in ["Rocky"] | ||
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This change: