Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
bob.devtools
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
5
Issues
5
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
bob
bob.devtools
Commits
f9895d78
Commit
f9895d78
authored
Jan 29, 2021
by
André Anjos
💬
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[build] Temporary changes to address
#70
parent
0e5024c7
Pipeline
#47494
passed with stage
in 8 minutes and 31 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
bob/devtools/build.py
bob/devtools/build.py
+5
-1
No files found.
bob/devtools/build.py
View file @
f9895d78
...
...
@@ -299,8 +299,12 @@ def parse_dependencies(recipe_dir, config):
metadata
=
get_rendered_metadata
(
recipe_dir
,
config
)
recipe
=
get_parsed_recipe
(
metadata
)
build_requirements
=
remove_pins
(
recipe
[
"requirements"
].
get
(
"build"
,
[]))
# causes conflicts on macOS
if
"llvm-tools"
in
build_requirements
:
build_requirements
.
remove
(
"llvm-tools"
)
return
(
remove_pins
(
recipe
[
"requirements"
].
get
(
"build"
,
[]))
build_requirements
+
remove_pins
(
recipe
[
"requirements"
].
get
(
"host"
,
[]))
+
recipe
[
"requirements"
].
get
(
"run"
,
[])
+
recipe
.
get
(
"test"
,
{}).
get
(
"requires"
,
[])
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment