ci: use build artifact in release testing job#4978
Merged
mayankansys merged 6 commits intomainfrom Mar 17, 2026
Merged
Conversation
Collaborator
|
updated and made ready for review as @mayankansys was facing some issues for GH login. |
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the release-tag CI “Release Testing” job to validate the built wheel artifact produced by the “Build” job, ensuring release tests exercise the same package that will be published.
Changes:
- Added a dependency (
needs: build) so the Release Testing job can reliably consume build artifacts. - Replaced source build + API codegen in Release Testing with downloading the
PyFluent-packagesartifact and installing fromdist/*.whl. - Removed now-unnecessary CI steps tied to building from source (pip cache, version-info injection, codegen, reinstall).
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
doc/changelog.d/4978.maintenance.md |
Adds a changelog fragment documenting the CI behavior change. |
.github/workflows/ci.yml |
Updates the Release Testing job to depend on the build job and install PyFluent from the uploaded wheel artifact. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
seanpearsonuk
approved these changes
Mar 9, 2026
prmukherj
reviewed
Mar 9, 2026
prmukherj
reviewed
Mar 9, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
mkundu1
approved these changes
Mar 16, 2026
prmukherj
approved these changes
Mar 16, 2026
hpohekar
approved these changes
Mar 16, 2026
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.
Context
The "Release Testing" job was building and installing pyfluent from source (including running API codegen) instead of using the wheel artifact from the "Build" job. This meant the release tests were not testing the same package that gets published to PyPI.
Change Summary
needs: buildto the Release Testing jobPyFluent-packagesartifact and installing from the wheelmake version-info,make install, API codegen, version info printing, and post-codegen reinstallImpact
Only the "Release Testing" CI job (triggered on release tag push) is affected. No changes to the build, unit testing, or release/publish jobs.