Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
bob
bob.devtools
Commits
dea68412
Commit
dea68412
authored
Jan 16, 2019
by
André Anjos
💬
Browse files
[build] Fix call to conda-build
parent
f1da548d
Pipeline
#26025
failed with stages
in 2 minutes and 2 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
bob/devtools/build.py
View file @
dea68412
...
...
@@ -305,12 +305,9 @@ if __name__ == '__main__':
verbose
=
True
)
# runs the build using the conda-build API
arch
=
osname
()
logger
.
info
(
'Building %s-%s-py%s (build: %d) for %s'
,
rendered_recipe
[
'package'
][
'name'
],
rendered_recipe
[
'package'
][
'version'
],
pyver
.
replace
(
'.'
,
''
),
build_number
,
arch
)
conda_build
.
api
.
build
(
d
,
config
=
conda_config
)
name
,
version
,
pyver
.
replace
(
'.'
,
''
),
build_number
,
osname
())
conda_build
.
api
.
build
(
os
.
path
.
join
(
workdir
,
'conda'
),
config
=
conda_config
)
# runs git clean to clean everything that is not needed. This helps to keep
# the disk usage on CI machines to a minimum.
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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