-
-
Notifications
You must be signed in to change notification settings - Fork 189
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2157 from adament/rattler-ignore_run_exports
- Loading branch information
Showing
5 changed files
with
72 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
**Added:** | ||
|
||
* <news item> | ||
|
||
**Changed:** | ||
|
||
* <news item> | ||
|
||
**Deprecated:** | ||
|
||
* <news item> | ||
|
||
**Removed:** | ||
|
||
* <news item> | ||
|
||
**Fixed:** | ||
|
||
* Fixed a bug that caused the linter to fail when a v1 recipe had the `ignore_run_exports` key. (#2157, #2153) | ||
|
||
**Security:** | ||
|
||
* <news item> |
32 changes: 32 additions & 0 deletions
32
tests/recipes/v1_recipes/recipe-ignore_run_exports-no-lint.yaml
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,32 @@ | ||
package: | ||
name: foo | ||
version: 1.2.3 | ||
|
||
source: | ||
url: https://example.com/foo.tar.gz | ||
sha256: b5bb9d8014a0f9b1d61e21e796d78dccdf1352f23cd32812f4850b878ae4944c | ||
|
||
build: | ||
number: 0 | ||
|
||
requirements: | ||
host: | ||
- has_run_export | ||
ignore_run_exports: | ||
from_package: | ||
- has_run_export | ||
|
||
tests: | ||
- script: | ||
- echo "Hello, world!" | ||
|
||
about: | ||
license: BSD-3-Clause | ||
license_file: LICENSE.txt | ||
homepage: https://example.com/foo | ||
summary: A package that does foo. | ||
|
||
extra: | ||
recipe-maintainers: | ||
- Alice | ||
- Bob |
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