forked from AcademySoftwareFoundation/rez
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'AcademySoftwareFoundation:main' into convert_rezconfig_…
…to_rezconfigpy
- Loading branch information
Showing
24 changed files
with
715 additions
and
174 deletions.
There are no files selected for viewing
This file contains 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 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 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 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 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 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 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 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 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 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,27 @@ | ||
================== | ||
Releasing packages | ||
================== | ||
|
||
Rez packages can be built and deployed to the :data:`release_packages_path` | ||
using the :ref:`rez-release` tool. This tool performs the following actions: | ||
|
||
* All :doc:`actions <building_packages>` that the ``rez-build`` tool performs. | ||
* Executes all configured :data:`release_hooks`. | ||
* Executes all configured :gh-rez:`src/rezplugins/release_vcs` plugins. | ||
|
||
When to release vs build | ||
============================ | ||
Packages *can* be installed to the :data:`release_packages_path` manually | ||
by running :option:`rez-build -i --prefix /path/to/repo <rez-build --prefix>`, so why would you use | ||
``rez-release``? | ||
|
||
Well, here are a few benefits of ``rez-release``: | ||
|
||
* The package will automatically go to the configured :data:`release_packages_path`, whereas :ref:`rez-build` will go to the :data:`local_packages_path` by default. | ||
* Tests being run by with the :ref:`rez-test` tool can run specifically prior to release, ensuring that releases pass any configured tests first. | ||
* Automatic sanity checks to ensure local repo is ready for release. | ||
* Automatic VCS tagging. | ||
* Many :ref:`helpful package attributes <release-package-attributes>` are automatically added to the released package definition file. | ||
|
||
If you're working locally, these additional steps and checks may slow you | ||
down, so it may be better to stick with :ref:`rez-build`. |
This file contains 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 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 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 |
---|---|---|
@@ -1,4 +1,9 @@ | ||
name = "pyvariants" | ||
version = "2" | ||
|
||
variants = [["python-2.7.0"], ["python-2.6.8", "nada"]] | ||
variants = [ | ||
["python-2.7.0"], | ||
["python-2.6.8", "nada"], | ||
["python-2.6.8"], | ||
["nada"], | ||
] |
This file contains 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.