fmt/support/biicode-build.py

36 lines
1.2 KiB
Python
Raw Normal View History

#!/usr/bin/env python
# Build the project with Biicode.
import bootstrap, glob, os, shutil, sys
from download import Downloader
from subprocess import check_call
os_name = os.environ['TRAVIS_OS_NAME']
if os_name != 'linux':
sys.exit()
cmake_dir = 'cmake-dir'
cmake_program = 'cmake'
# Install newer version of CMake.
cmake_program = bootstrap.install_cmake(
'cmake-3.1.1-Linux-i386.tar.gz', check_installed=False, download_dir=None, install_dir='.')
cmake_dir = glob.glob('cmake*')[0]
with Downloader().download('http://www.biicode.com/downloads/latest/ubuntu64') as f:
check_call(['sudo', 'dpkg', '-i', f])
2015-03-04 16:07:26 +00:00
env = os.environ.copy()
env['PATH'] = os.path.abspath(os.path.dirname(cmake_program)) + ':' + env['PATH']
env['CMAKE_ROOT'] = os.path.abspath(cmake_dir)
project_dir = 'biicode_project'
2015-03-04 16:07:26 +00:00
check_call(['bii', 'init', project_dir], env=env)
cppformat_dir = os.path.join(project_dir, 'blocks/vitaut/cppformat')
2015-03-04 06:07:20 +00:00
shutil.copytree('.', cppformat_dir,
ignore=shutil.ignore_patterns('biicode_project', cmake_dir))
for f in glob.glob('support/biicode/*'):
shutil.copy(f, cppformat_dir)
2015-03-04 16:33:13 +00:00
print env['CMAKE_ROOT']
2015-03-04 16:57:56 +00:00
check_call(['cmake', '--version'], env=env)
2015-03-04 16:33:13 +00:00
#check_call(['bii', 'cpp:build'], cwd=project_dir, env=env)