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
7
Issues
7
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
0aaf5ff2
Commit
0aaf5ff2
authored
May 26, 2020
by
André Anjos
💬
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[build] Fix assertion
parent
0ccf78f3
Pipeline
#40145
failed with stage
in 5 minutes and 14 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
8 deletions
+9
-8
bob/devtools/build.py
bob/devtools/build.py
+9
-8
No files found.
bob/devtools/build.py
View file @
0aaf5ff2
...
...
@@ -815,14 +815,15 @@ if __name__ == "__main__":
paths
=
get_output_path
(
metadata
,
conda_config
)
# asserts we're building at the right location
assert
path
.
startswith
(
os
.
path
.
join
(
args
.
conda_root
,
"conda-bld"
)),
(
'Output path for build (%s) does not start with "%s" - this '
"typically means this build is running on a shared builder and "
"the file ~/.conda/environments.txt is polluted with other "
"environment paths. To fix, empty that file and set its mode "
"to read-only for all."
%
(
path
,
os
.
path
.
join
(
args
.
conda_root
,
"conda-bld"
))
)
for
path
in
paths
:
assert
path
.
startswith
(
os
.
path
.
join
(
args
.
conda_root
,
"conda-bld"
)),
(
'Output path for build (%s) does not start with "%s" - this '
"typically means this build is running on a shared builder and "
"the file ~/.conda/environments.txt is polluted with other "
"environment paths. To fix, empty that file and set its mode "
"to read-only for all."
%
(
path
,
os
.
path
.
join
(
args
.
conda_root
,
"conda-bld"
))
)
# retrieve the current build number(s) for this build
build_numbers
=
[
...
...
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