Skip to content
Snippets Groups Projects
Commit 4c301904 authored by Amir MOHAMMADI's avatar Amir MOHAMMADI
Browse files

improvements

parent 4e7a3b64
No related branches found
No related tags found
1 merge request!63Conda package based CI
...@@ -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(
......
...@@ -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
......
...@@ -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
......
...@@ -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 }}.*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment