Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bob.devtools
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
bob
bob.devtools
Commits
011c321a
Commit
011c321a
authored
5 years ago
by
André Anjos
Browse files
Options
Downloads
Plain Diff
Merge branch 'local-defaults-mirror' into 'master'
[bootstrap] Use local defaults channel mirror See merge request
!105
parents
0540860e
49faef9c
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!105
[bootstrap] Use local defaults channel mirror
Pipeline
#33161
passed
5 years ago
Stage: build
Stage: deploy
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bob/devtools/bootstrap.py
+8
-1
8 additions, 1 deletion
bob/devtools/bootstrap.py
with
8 additions
and
1 deletion
bob/devtools/bootstrap.py
+
8
−
1
View file @
011c321a
...
...
@@ -438,7 +438,14 @@ if __name__ == "__main__":
condarc
=
os
.
path
.
join
(
args
.
conda_root
,
"
condarc
"
)
logger
.
info
(
"
(create) %s
"
,
condarc
)
with
open
(
condarc
,
"
wt
"
)
as
f
:
f
.
write
(
_BASE_CONDARC
)
# Replaces https://repo.anaconda.com/pkgs/main by
# http://www.idiap.ch/software/bob/defaults with so it is optimized for
# a CI build. Notice we consider this script is only executed in this
# context. The URL should NOT work outside of Idiap's network.
f
.
write
(
_BASE_CONDARC
.
replace
(
'
https://repo.anaconda.com/pkgs/main
'
,
'
http://www.idiap.ch/defaults
'
,
))
conda_version
=
"
4
"
conda_build_version
=
"
3.16
"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment