Lines Matching refs:getenv
10 if os.getenv("APPVEYOR") is not None:
11 compiler_version = os.getenv("CMAKE_VS_VERSION").split(" ")[0].replace('"', '')
14 ci_platform = os.getenv("Platform").replace('"', '')
17 os.environ["CONAN_BUILD_TYPES"] = os.getenv("Configuration").replace('"', '')
34 if os.getenv("TRAVIS", False):
35 version = os.getenv("TRAVIS_BRANCH")
37 if os.getenv("APPVEYOR", False):
38 version = os.getenv("APPVEYOR_REPO_BRANCH")
39 if os.getenv("APPVEYOR_REPO_TAG") == "true":
40 version = os.getenv("APPVEYOR_REPO_TAG_NAME")
53 login_username = os.getenv("CONAN_LOGIN_USERNAME", "aardappel")
54 username = os.getenv("CONAN_USERNAME", "google")
55 upload = os.getenv("CONAN_UPLOAD", "https://api.bintray.com/conan/aardappel/flatbuffers")
56 stable_branch_pattern = os.getenv("CONAN_STABLE_BRANCH_PATTERN", r"v\d+\.\d+\.\d+.*")
57 test_folder = os.getenv("CPT_TEST_FOLDER", os.path.join("conan", "test_package"))
58 upload_only_when_stable = os.getenv("CONAN_UPLOAD_ONLY_WHEN_STABLE", True)