Use pixi instead of conda #287
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Migrates the repository’s environment management from conda (environment.yml) to pixi (pixi.toml/pixi.lock), updating CI and the devcontainer to provision dependencies via Pixi and adding an option to skip MATLAB installation on ARM64.
Changes:
- Replace
environment.ymlwith Pixi workspace config (pixi.toml) and lockfile (pixi.lock), update docs/README accordingly. - Update GitHub Actions to use a new
configure-environmentcomposite action that sets up Pixi and Go usingtooling/go.mod. - Rework devcontainer provisioning to install Pixi in the image and create the Pixi env in a persisted
.pixivolume; add conditional MATLAB install and new post-* hooks.
Reviewed changes
Copilot reviewed 16 out of 18 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
tooling/go.mod |
Updates Go version used by CI/devcontainer tooling installs. |
README.md |
Updates developer setup docs to reference Pixi instead of Conda. |
pyrightconfig.json |
Expands Pyright excludes (node_modules, caches, dotdirs). |
pixi.toml |
Defines Pixi workspace deps and a dev feature for local tooling. |
pixi.lock |
Locks Pixi/conda package resolution for reproducible installs. |
justfile |
Adds build dir cleaning and build-type-aware CMake configure recipes. |
environment.yml |
Removes old Conda environment definition. |
docs/cpp/installation.md |
Adds Pixi-based dependency installation guidance; keeps Conda alternative. |
cpp/CMakeLists.txt |
Adjusts debug flags (adds -U_FORTIFY_SOURCE). |
.vscode/c_cpp_properties.json |
Points VS Code C++ compiler path at Pixi-provided toolchain. |
.gitignore |
Ignores .pixi/ (Pixi env/cache directory). |
.github/workflows/ci.yml |
Switches CI to the new Pixi-based environment configuration. |
.github/actions/configure-environment/action.yml |
Implements Pixi+Go setup for CI jobs. |
.devcontainer/Dockerfile |
Replaces Conda install with Pixi install; makes MATLAB install conditional and skips on ARM64. |
.devcontainer/devcontainer.json |
Adds Pixi volume mount and post-create/start hooks; updates tool paths to Pixi env. |
.devcontainer/devcontainer.bashrc |
Activates Pixi dev environment for interactive shells. |
.devcontainer/devcontainer-post-start.sh |
Ensures .bashrc sources the devcontainer bashrc after dotfiles apply. |
.devcontainer/devcontainer-post-create.sh |
Creates the Pixi dev env, stable tool symlinks, and CMake Tools kits file. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
naegelejd
approved these changes
Jun 2, 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.
Migrating environment management from
condatopixi. Also skipping MATLAB installation on ARM64.