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
1f1f7d44
Commit
1f1f7d44
authored
5 years ago
by
André Anjos
Browse files
Options
Downloads
Patches
Plain Diff
[build] Add log message when re-indexing
parent
3307b82e
No related branches found
No related tags found
1 merge request
!46
Force re-indexing of locally built packages if "local" channel is present
Pipeline
#29417
passed
5 years ago
Stage: build
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
bob/devtools/build.py
+3
-1
3 additions, 1 deletion
bob/devtools/build.py
bob/devtools/scripts/build.py
+3
-1
3 additions, 1 deletion
bob/devtools/scripts/build.py
bob/devtools/scripts/test.py
+3
-1
3 additions, 1 deletion
bob/devtools/scripts/test.py
with
9 additions
and
3 deletions
bob/devtools/build.py
+
3
−
1
View file @
1f1f7d44
...
@@ -526,7 +526,9 @@ def base_build(bootstrap, server, intranet, use_local, group, recipe_dir,
...
@@ -526,7 +526,9 @@ def base_build(bootstrap, server, intranet, use_local, group, recipe_dir,
if
use_local
:
if
use_local
:
prefix
=
get_env_directory
(
os
.
environ
[
'
CONDA_EXE
'
],
'
base
'
)
prefix
=
get_env_directory
(
os
.
environ
[
'
CONDA_EXE
'
],
'
base
'
)
conda_bld
=
os
.
path
.
join
(
prefix
,
'
conda-bld
'
)
conda_bld
=
os
.
path
.
join
(
prefix
,
'
conda-bld
'
)
if
os
.
path
.
exists
(
conda_bld
):
conda_build
.
api
.
update_index
(
conda_bld
)
if
os
.
path
.
exists
(
conda_bld
):
logger
.
info
(
'
Re-indexing %s
'
,
conda_bld
)
conda_build
.
api
.
update_index
(
conda_bld
)
logger
.
info
(
'
Merging conda configuration files...
'
)
logger
.
info
(
'
Merging conda configuration files...
'
)
if
python_version
not
in
(
'
noarch
'
,
None
):
if
python_version
not
in
(
'
noarch
'
,
None
):
...
...
This diff is collapsed.
Click to expand it.
bob/devtools/scripts/build.py
+
3
−
1
View file @
1f1f7d44
...
@@ -121,7 +121,9 @@ def build(recipe_dir, python, condarc, config, no_test, append_file,
...
@@ -121,7 +121,9 @@ def build(recipe_dir, python, condarc, config, no_test, append_file,
# updates the local index to get fresh packages if required
# updates the local index to get fresh packages if required
if
use_local
:
if
use_local
:
conda_bld
=
os
.
path
.
join
(
prefix
,
'
conda-bld
'
)
conda_bld
=
os
.
path
.
join
(
prefix
,
'
conda-bld
'
)
if
os
.
path
.
exists
(
conda_bld
):
conda_build
.
api
.
update_index
(
conda_bld
)
if
os
.
path
.
exists
(
conda_bld
):
logger
.
info
(
'
Re-indexing %s
'
,
conda_bld
)
conda_build
.
api
.
update_index
(
conda_bld
)
conda_config
=
make_conda_config
(
config
,
python
,
append_file
,
conda_config
=
make_conda_config
(
config
,
python
,
append_file
,
condarc_options
)
condarc_options
)
...
...
This diff is collapsed.
Click to expand it.
bob/devtools/scripts/test.py
+
3
−
1
View file @
1f1f7d44
...
@@ -107,7 +107,9 @@ def test(package, condarc, config, append_file, server, group, private, stable,
...
@@ -107,7 +107,9 @@ def test(package, condarc, config, append_file, server, group, private, stable,
if
use_local
and
not
dry_run
:
if
use_local
and
not
dry_run
:
prefix
=
get_env_directory
(
os
.
environ
[
'
CONDA_EXE
'
],
'
base
'
)
prefix
=
get_env_directory
(
os
.
environ
[
'
CONDA_EXE
'
],
'
base
'
)
conda_bld
=
os
.
path
.
join
(
prefix
,
'
conda-bld
'
)
conda_bld
=
os
.
path
.
join
(
prefix
,
'
conda-bld
'
)
if
os
.
path
.
exists
(
conda_bld
):
conda_build
.
api
.
update_index
(
conda_bld
)
if
os
.
path
.
exists
(
conda_bld
):
logger
.
info
(
'
Re-indexing %s
'
,
conda_bld
)
conda_build
.
api
.
update_index
(
conda_bld
)
conda_config
=
make_conda_config
(
config
,
None
,
append_file
,
conda_config
=
make_conda_config
(
config
,
None
,
append_file
,
condarc_options
)
condarc_options
)
...
...
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