-
Notifications
You must be signed in to change notification settings - Fork 1
ewoks install: support the pixi package manager #337
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
woutdenolf
wants to merge
1
commit into
main
Choose a base branch
from
add_pixi_support
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,166 @@ | ||
| .. _install_pixi: | ||
|
|
||
| pixi | ||
| ==== | ||
|
|
||
| End-to-end walk-through of `workflow installation and execution <../install.rst>`_ | ||
| with `pixi <https://pixi.sh/>`_. | ||
|
|
||
| Pixi works with workspaces instead of environments: its commands need a directory with a | ||
| ``pixi.toml`` file, selected with ``--manifest-path``. Like conda it installs python itself | ||
| and it takes its packages from the conda channels, with the packages of the python package | ||
| index in a section of their own. | ||
|
|
||
| Install pixi | ||
| ------------ | ||
|
|
||
| .. tabs:: | ||
|
|
||
| .. group-tab:: Linux | ||
|
|
||
| .. code-block:: bash | ||
|
|
||
| export PIXI_HOME=$HOME/.pixi # default location | ||
| export PIXI_NO_PATH_UPDATE=true | ||
| curl -fsSL https://pixi.sh/install.sh | sh | ||
| export PATH=$PIXI_HOME/bin:$PATH | ||
|
|
||
| .. group-tab:: macOS | ||
|
|
||
| .. code-block:: bash | ||
|
|
||
| export PIXI_HOME=$HOME/.pixi # default location | ||
| export PIXI_NO_PATH_UPDATE=true | ||
| curl -fsSL https://pixi.sh/install.sh | sh | ||
| export PATH=$PIXI_HOME/bin:$PATH | ||
|
|
||
| .. group-tab:: Windows | ||
|
|
||
| .. code-block:: powershell | ||
|
|
||
| $env:PIXI_HOME = "$env:USERPROFILE\.pixi" # default location | ||
| $env:PIXI_NO_PATH_UPDATE = "true" | ||
| irm -useb https://pixi.sh/install.ps1 | iex | ||
| $env:PATH = "$env:PIXI_HOME\bin;$env:PATH" | ||
|
|
||
| Producer side | ||
| ------------- | ||
|
|
||
| Create a workspace, install :term:`ewoks` in it and store a :term:`workflow` with the packages | ||
| of that workspace as its ``requirements`` | ||
|
|
||
| .. tabs:: | ||
|
|
||
| .. group-tab:: Linux | ||
|
|
||
| .. code-block:: bash | ||
|
|
||
| pixi init ewoks_producer | ||
| pixi add --manifest-path ewoks_producer/pixi.toml python pip | ||
| pixi add --manifest-path ewoks_producer/pixi.toml --pypi ewoks | ||
| pixi run --manifest-path ewoks_producer/pixi.toml ewoks convert demo demo.json --test | ||
|
|
||
| .. group-tab:: macOS | ||
|
|
||
| .. code-block:: bash | ||
|
|
||
| pixi init ewoks_producer | ||
| pixi add --manifest-path ewoks_producer/pixi.toml python pip | ||
| pixi add --manifest-path ewoks_producer/pixi.toml --pypi ewoks | ||
| pixi run --manifest-path ewoks_producer/pixi.toml ewoks convert demo demo.json --test | ||
|
|
||
| .. group-tab:: Windows | ||
|
|
||
| .. code-block:: powershell | ||
|
|
||
| pixi init ewoks_producer | ||
| pixi add --manifest-path ewoks_producer\pixi.toml python pip | ||
| pixi add --manifest-path ewoks_producer\pixi.toml --pypi ewoks | ||
| pixi run --manifest-path ewoks_producer\pixi.toml ewoks convert demo demo.json --test | ||
|
|
||
| Install any package that provides :term:`tasks <Task>` instead of | ||
| ``ewoks`` for a real :term:`workflow`. ``pixi run`` executes in the current directory, so the | ||
| workflow paths are relative to it and not to the workspace. | ||
|
|
||
| Re-producer side | ||
| ---------------- | ||
|
|
||
| Only ``ewoks`` itself is needed to recreate the environment of ``demo.json`` | ||
|
|
||
| .. tabs:: | ||
|
|
||
| .. group-tab:: Linux | ||
|
|
||
| .. code-block:: bash | ||
|
|
||
| pixi init ewoks_reproducer | ||
| pixi add --manifest-path ewoks_reproducer/pixi.toml python pip | ||
| pixi add --manifest-path ewoks_reproducer/pixi.toml --pypi ewoks | ||
| pixi run --manifest-path ewoks_reproducer/pixi.toml ewoks install demo.json --yes --env-root ewoks_envs | ||
|
|
||
| .. group-tab:: macOS | ||
|
|
||
| .. code-block:: bash | ||
|
|
||
| pixi init ewoks_reproducer | ||
| pixi add --manifest-path ewoks_reproducer/pixi.toml python pip | ||
| pixi add --manifest-path ewoks_reproducer/pixi.toml --pypi ewoks | ||
| pixi run --manifest-path ewoks_reproducer/pixi.toml ewoks install demo.json --yes --env-root ewoks_envs | ||
|
|
||
| .. group-tab:: Windows | ||
|
|
||
| .. code-block:: powershell | ||
|
|
||
| pixi init ewoks_reproducer | ||
| pixi add --manifest-path ewoks_reproducer\pixi.toml python pip | ||
| pixi add --manifest-path ewoks_reproducer\pixi.toml --pypi ewoks | ||
| pixi run --manifest-path ewoks_reproducer\pixi.toml ewoks install demo.json --yes --env-root ewoks_envs | ||
|
|
||
| The environment of the :term:`workflow` is a pixi workspace in ``ewoks_envs/demo`` with the | ||
| environment in its ``.pixi/envs/default`` directory. | ||
|
|
||
| Execute the workflow | ||
| -------------------- | ||
|
|
||
| .. tabs:: | ||
|
|
||
| .. group-tab:: Linux | ||
|
|
||
| .. code-block:: bash | ||
|
|
||
| pixi run --manifest-path ewoks_reproducer/pixi.toml ewoks execute --env ewoks_envs/demo demo.json --outputs=all | ||
|
|
||
| .. group-tab:: macOS | ||
|
|
||
| .. code-block:: bash | ||
|
|
||
| pixi run --manifest-path ewoks_reproducer/pixi.toml ewoks execute --env ewoks_envs/demo demo.json --outputs=all | ||
|
|
||
| .. group-tab:: Windows | ||
|
|
||
| .. code-block:: powershell | ||
|
|
||
| pixi run --manifest-path ewoks_reproducer\pixi.toml ewoks execute --env ewoks_envs\demo demo.json --outputs=all | ||
|
|
||
| Clean up | ||
| -------- | ||
|
|
||
| .. tabs:: | ||
|
|
||
| .. group-tab:: Linux | ||
|
|
||
| .. code-block:: bash | ||
|
|
||
| rm -rf ewoks_producer ewoks_reproducer ewoks_envs demo.json | ||
|
|
||
| .. group-tab:: macOS | ||
|
|
||
| .. code-block:: bash | ||
|
|
||
| rm -rf ewoks_producer ewoks_reproducer ewoks_envs demo.json | ||
|
|
||
| .. group-tab:: Windows | ||
|
|
||
| .. code-block:: powershell | ||
|
|
||
| Remove-Item -Recurse -Force ewoks_producer, ewoks_reproducer, ewoks_envs, demo.json |
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
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When everything is done we can add something to CONTRIBUTING.md for what is needed to run the full test suite.