-
Notifications
You must be signed in to change notification settings - Fork 429
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 #3061 from msarahan/fix_source_files
test recipe for parent source_files, try to handle parent recipe folders
- Loading branch information
Showing
5 changed files
with
65 additions
and
30 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
27 changes: 27 additions & 0 deletions
27
tests/test-recipes/split-packages/test_files_in_parent/meta.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,27 @@ | ||
package: | ||
name: test_files_in_parent_recipe | ||
version: 1.0 | ||
|
||
source: | ||
path: src | ||
|
||
build: | ||
script: echo "weee" | ||
|
||
outputs: | ||
# one that has same name as top-level | ||
- name: test_files_in_parent_recipe | ||
test: | ||
files: | ||
- recipe_file | ||
commands: | ||
- test -e recipe_file # [unix] | ||
- IF NOT EXIST recipe_file exit 1 # [win] | ||
# one that does not | ||
- name: abc | ||
test: | ||
files: | ||
- recipe_file | ||
commands: | ||
- test -e recipe_file # [unix] | ||
- IF NOT EXIST recipe_file exit 1 # [win] |
Empty file.
Empty file.