-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.py
72 lines (49 loc) · 2.08 KB
/
build.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from conan.packager import ConanMultiPackager
import os
import re
import platform
def get_value_from_recipe(search_string):
with open("conanfile.py", "r") as conanfile:
contents = conanfile.read()
result = re.search(search_string, contents)
return result
def get_name_from_recipe():
return get_value_from_recipe(r'''name\s*=\s*["'](\S*)["']''').groups()[0]
def get_version_from_recipe():
return get_value_from_recipe(r'''version\s*=\s*["'](\S*)["']''').groups()[0]
def get_default_vars():
username = os.getenv("CONAN_USERNAME", "DEGoodmanWilson")
channel = os.getenv("CONAN_CHANNEL", "testing")
version = get_version_from_recipe()
return username, channel, version
def is_ci_running():
return os.getenv("APPVEYOR_REPO_NAME", "") or os.getenv("TRAVIS_REPO_SLUG", "")
def get_ci_vars():
reponame_a = os.getenv("APPVEYOR_REPO_NAME","")
repobranch_a = os.getenv("APPVEYOR_REPO_BRANCH","")
reponame_t = os.getenv("TRAVIS_REPO_SLUG","")
repobranch_t = os.getenv("TRAVIS_BRANCH","")
username, _ = reponame_a.split("/") if reponame_a else reponame_t.split("/")
channel, version = repobranch_a.split("/") if repobranch_a else repobranch_t.split("/")
return username, channel, version
def get_env_vars():
return get_ci_vars() if is_ci_running() else get_default_vars()
def get_os():
return platform.system().replace("Darwin", "Macos")
if __name__ == "__main__":
name = get_name_from_recipe()
username, channel, version = get_env_vars()
reference = "{0}/{1}".format(name, version)
upload = "https://api.bintray.com/conan/{0}/opensource".format(username.lower())
builder = ConanMultiPackager(
username=username,
channel=channel,
reference=reference,
upload=upload,
remotes=upload, # while redundant, this moves bincrafters remote to position 0
upload_only_when_stable=True,
stable_branch_pattern="stable/*")
builder.add_common_builds(shared_option_name=name + ":shared", pure_c=False)
builder.run()