Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bob.admin
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
bob
bob.admin
Commits
4c301904
Commit
4c301904
authored
7 years ago
by
Amir MOHAMMADI
Browse files
Options
Downloads
Patches
Plain Diff
improvements
parent
4e7a3b64
No related branches found
No related tags found
1 merge request
!63
Conda package based CI
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
conda/migrate.py
+37
-18
37 additions, 18 deletions
conda/migrate.py
conda/migrate.sh
+1
-0
1 addition, 0 deletions
conda/migrate.sh
gitlab/conda_build_config.yaml
+2
-0
2 additions, 0 deletions
gitlab/conda_build_config.yaml
templates/meta.yaml
+1
-0
1 addition, 0 deletions
templates/meta.yaml
with
41 additions
and
18 deletions
conda/migrate.py
+
37
−
18
View file @
4c301904
...
@@ -11,6 +11,10 @@ from conda_build.variants import parse_config_file
...
@@ -11,6 +11,10 @@ from conda_build.variants import parse_config_file
from
conda_build.conda_interface
import
PY3
from
conda_build.conda_interface
import
PY3
import
os
import
os
RUN_EXPORTS
=
[
'
- libblitz
\n
'
,
]
def
extract_requirements_text
(
path
):
def
extract_requirements_text
(
path
):
text
=
""
text
=
""
...
@@ -68,6 +72,14 @@ def add_variant(doc, star=True):
...
@@ -68,6 +72,14 @@ def add_variant(doc, star=True):
return
doc
return
doc
def
extract_section
(
text
,
first
,
last
):
i1
=
text
.
find
(
first
)
i2
=
text
.
find
(
last
,
i1
)
if
i1
==
-
1
or
i2
==
-
1
:
return
-
1
,
-
1
,
''
return
i1
,
i2
,
text
[
i1
+
len
(
first
):
i2
]
def
migrate
(
template_recipe_path
,
old_recipe_path
,
build_variant_path
,
def
migrate
(
template_recipe_path
,
old_recipe_path
,
build_variant_path
,
output_folder
):
output_folder
):
config
=
Config
()
config
=
Config
()
...
@@ -87,32 +99,36 @@ def migrate(template_recipe_path, old_recipe_path, build_variant_path,
...
@@ -87,32 +99,36 @@ def migrate(template_recipe_path, old_recipe_path, build_variant_path,
final_recipe
=
final_recipe
.
replace
(
final_recipe
=
final_recipe
.
replace
(
'
<ENTRY_POINTS_TEST>
\n
'
,
entry_points_test
)
'
<ENTRY_POINTS_TEST>
\n
'
,
entry_points_test
)
requirements_text
=
extract_requirements_text
(
old_recipe_path
)
requirements_text
=
extract_requirements_text
(
old_recipe_path
)
already_build
=
[
'
- python
\n
'
,
i1
,
i2
,
build_text
=
extract_section
(
'
- setuptools
\n
'
,
requirements_text
,
'
build:
\n
'
,
'
host:
\n
'
)
'
- python {{ python }}
\n
'
,
i1
,
i2
,
host_text
=
extract_section
(
requirements_text
,
'
host:
\n
'
,
'
run:
\n
'
)
'
- setuptools {{ setuptools }}
\n
'
,
already_build
=
[
'
- toolchain {{ toolchain }}
\n
'
]
'
- python
\n
'
,
i1
=
requirements_text
.
find
(
'
build:
\n
'
)
+
7
'
- setuptools
\n
'
,
i2
=
requirements_text
.
find
(
'
run:
\n
'
)
'
- python {{ python }}
\n
'
,
build_text
=
requirements_text
[
i1
:
i2
]
'
- setuptools {{ setuptools }}
\n
'
,
requires_compilers
=
'
toolchain
'
in
build_text
'
- toolchain {{ toolchain }}
\n
'
,
"
- {{ compiler(
'
c
'
) }}
\n
"
,
"
- {{ compiler(
'
cxx
'
) }}
\n
"
,
]
requires_compilers
=
'
toolchain
'
in
host_text
or
build_text
for
line
in
already_build
:
for
line
in
already_build
:
build
_text
=
build
_text
.
replace
(
line
,
''
)
host
_text
=
host
_text
.
replace
(
line
,
''
)
build
_text
=
build
_text
.
strip
()
host
_text
=
host
_text
.
strip
()
if
build
_text
:
if
host
_text
:
build
_text
=
'
'
+
build
_text
+
'
\n
'
host
_text
=
'
'
+
host
_text
+
'
\n
'
build
_text
=
add_variant
(
build
_text
,
star
=
False
)
host
_text
=
add_variant
(
host
_text
,
star
=
False
)
final_recipe
=
final_recipe
.
replace
(
'
<HOST_DEPS>
\n
'
,
build
_text
)
final_recipe
=
final_recipe
.
replace
(
'
<HOST_DEPS>
\n
'
,
host
_text
)
if
requires_compilers
:
if
requires_compilers
:
final_recipe
=
final_recipe
.
replace
(
'
<BUILD_DEPS>
\n
'
,
'''
build:
final_recipe
=
final_recipe
.
replace
(
'
<BUILD_DEPS>
\n
'
,
'''
build:
- {{ compiler(
'
c
'
)}}
- {{ compiler(
'
c
'
)}}
- {{ compiler(
'
cxx
'
)}}
- {{ compiler(
'
cxx
'
)}}
'''
)
'''
)
else
:
else
:
final_recipe
=
final_recipe
.
replace
(
'
<BUILD_DEPS>
\n
'
,
''
)
final_recipe
=
final_recipe
.
replace
(
'
<BUILD_DEPS>
\n
'
,
''
)
run_text
=
requirements_text
[
i2
+
5
:]
run_text
=
requirements_text
[
i2
+
5
:]
for
line
in
already_build
[:
2
]:
for
line
in
already_build
[:
2
]
+
RUN_EXPORTS
:
run_text
=
run_text
.
replace
(
line
,
''
)
run_text
=
run_text
.
replace
(
line
,
''
)
run_text
=
run_text
.
strip
()
run_text
=
run_text
.
strip
()
run_text
=
'
'
+
run_text
+
'
\n
'
if
run_text
else
run_text
run_text
=
'
'
+
run_text
+
'
\n
'
if
run_text
else
run_text
...
@@ -128,6 +144,9 @@ def migrate(template_recipe_path, old_recipe_path, build_variant_path,
...
@@ -128,6 +144,9 @@ def migrate(template_recipe_path, old_recipe_path, build_variant_path,
if
test_requires
:
if
test_requires
:
test_requires
=
'
'
+
test_requires
+
'
\n
'
test_requires
=
'
'
+
test_requires
+
'
\n
'
test_requires
=
add_variant
(
test_requires
)
test_requires
=
add_variant
(
test_requires
)
if
recipe
.
name
()
==
'
bob.buildout
'
:
final_recipe
=
final_recipe
.
replace
(
'
- bob-devel {{ bob_devel }}.*
\n
'
,
''
)
final_recipe
=
final_recipe
.
replace
(
final_recipe
=
final_recipe
.
replace
(
'
<TEST_DEPS>
\n
'
,
test_requires
)
'
<TEST_DEPS>
\n
'
,
test_requires
)
final_recipe
=
final_recipe
.
replace
(
final_recipe
=
final_recipe
.
replace
(
...
...
This diff is collapsed.
Click to expand it.
conda/migrate.sh
+
1
−
0
View file @
4c301904
...
@@ -46,6 +46,7 @@ bob.ip.flandmark \
...
@@ -46,6 +46,7 @@ bob.ip.flandmark \
echo
"record.txt"
>>
.gitignore
echo
"record.txt"
>>
.gitignore
subl conda/meta.yaml
subl conda/meta.yaml
export
BOB_PACKAGE_VERSION
=
`
cat
version.txt |
tr
-d
'\n'
`
conda build
-m
../../gitlab/conda_build_config.yaml
--python
=
2.7 conda
conda build
-m
../../gitlab/conda_build_config.yaml
--python
=
2.7 conda
git add
-A
git add
-A
...
...
This diff is collapsed.
Click to expand it.
gitlab/conda_build_config.yaml
+
2
−
0
View file @
4c301904
...
@@ -42,6 +42,8 @@ zip_keys:
...
@@ -42,6 +42,8 @@ zip_keys:
# expected in our conda build process.
# expected in our conda build process.
# Ideally we want to build and test against older versions of dependencies.
# Ideally we want to build and test against older versions of dependencies.
# Most of the pin numbers come from the anaconda package.
# Most of the pin numbers come from the anaconda package.
bob_devel
:
-
2018.01.16
## the dependencies that we build against multiple versions
## the dependencies that we build against multiple versions
# we build for an old version of numpy for forward compatibility
# we build for an old version of numpy for forward compatibility
...
...
This diff is collapsed.
Click to expand it.
templates/meta.yaml
+
1
−
0
View file @
4c301904
...
@@ -39,6 +39,7 @@ test:
...
@@ -39,6 +39,7 @@ test:
- conda inspect linkages -p $PREFIX {{ name }}
# [not win]
- conda inspect linkages -p $PREFIX {{ name }}
# [not win]
-
conda inspect objects -p $PREFIX {{ name }}
# [osx]
-
conda inspect objects -p $PREFIX {{ name }}
# [osx]
requires
:
requires
:
-
bob-devel {{ bob_devel }}.*
-
nose {{ nose }}.*
-
nose {{ nose }}.*
-
coverage {{ coverage }}.*
-
coverage {{ coverage }}.*
-
sphinx {{ sphinx }}.*
-
sphinx {{ sphinx }}.*
...
...
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