-
Notifications
You must be signed in to change notification settings - Fork 134
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add support to run build for recipes with linux-aarch64 additio…
…nal-platforms (#923) This patches add support in bioconda-utils to run on linux-arm if the following is added to the recipe: ```yaml extra: additional-platforms: - linux-aarch64 ``` - Add a `check_native_platform_skippable` to checkout should we skip the recipes in current nativei platform - Add `extra_additional_platforms` property to recipe object - Add UT to test above function ``` py.test --durations=0 test/test_utils.py::test_native_platform_skipping py.test --durations=0 test/test_recipe.py::test_recipe_extra_additional_platforms ``` - E2E test ``` bioconda-utils build recipes config.yml --git-range origin/master HEAD bioconda-utils build recipes config.yml --git-range origin/master HEAD --force ``` - Fix test trigger by adding `fetch-depth` related: bioconda/bioconda-recipes#40550 --------- Signed-off-by: Yikun Jiang <[email protected]>
- Loading branch information
Showing
5 changed files
with
85 additions
and
0 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