Conversation
sebhmg
previously approved these changes
Sep 3, 2025
…-584 # Conflicts: # .github/workflows/reusable-python-pytest.yml # .github/workflows/reusable-python-static_analysis.yml
so that it fails in case the lock file is not up-to-date with the pyproject.toml
sebhmg
reviewed
Sep 4, 2025
Can possibly move to hatch or uv later. Building the pypi package does not rely on pixi, even if pixi can be used to define a build environment or a task
sebhmg
previously approved these changes
Sep 4, 2025
saicheranb
previously approved these changes
Sep 4, 2025
0e6f4a5 to
fccb770
Compare
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR introduces pixi as a new package manager option for HPC environments, extending the existing CI/CD workflows to support conda, poetry, hatch, and pixi package managers.
- Adds pixi support to Python static analysis and pytest workflows
- Creates a new reusable action for setting up pixi environments
- Updates conda setup action to include cache-number parameter for better cache management
Reviewed Changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
.github/workflows/reusable-python-static_analysis.yml |
Adds pixi package manager support with conditional setup and pylint execution |
.github/workflows/reusable-python-pytest.yml |
Integrates pixi package manager for pytest execution and updates description wording |
.github/actions/reusable-python-setup_pixi/action.yml |
New action implementing pixi environment setup with caching and authentication |
.github/actions/reusable-python-setup_conda/action.yml |
Adds cache-number input parameter for improved cache management |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
so that subsequent calls to pixi run do not fall back to the default env
Contributor
|
changes tested from here: MiraGeoscience/geoapps-utils#153 |
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.
DEVOPS-584 - POC on pixi env for HPC