Definition of conan remotes moved to build.py

This commit is contained in:
Mateusz Pusz
2019-04-07 08:56:20 +02:00
parent 240b79f9c3
commit 0b2ce0c351
2 changed files with 3 additions and 3 deletions

View File

@@ -3,11 +3,10 @@ env:
- CONAN_USERNAME: "mpusz" - CONAN_USERNAME: "mpusz"
- CONAN_LOGIN_USERNAME: "mpusz" - CONAN_LOGIN_USERNAME: "mpusz"
- CONAN_CHANNEL: "testing" - CONAN_CHANNEL: "testing"
- CONAN_UPLOAD: "https://api.bintray.com/conan/mpusz/conan-mpusz " - CONAN_UPLOAD: "https://api.bintray.com/conan/mpusz/conan-mpusz"
- CONAN_STABLE_BRANCH_PATTERN: "release/*" - CONAN_STABLE_BRANCH_PATTERN: "release/*"
- CONAN_UPLOAD_ONLY_WHEN_STABLE: 0 - CONAN_UPLOAD_ONLY_WHEN_STABLE: 0
- CONAN_DOCKER_32_IMAGES: 1 - CONAN_DOCKER_32_IMAGES: 1
- CONAN_REMOTES: "https://api.bintray.com/conan/mpusz/conan-mpusz, https://api.bintray.com/conan/martinmoene/nonstd-lite"
linux: &linux linux: &linux
os: linux os: linux

View File

@@ -2,5 +2,6 @@ from cpt.packager import ConanMultiPackager
if __name__ == "__main__": if __name__ == "__main__":
builder = ConanMultiPackager() builder = ConanMultiPackager()
builder.add_common_builds(shared_option_name=False, pure_c=False) builder.add_common_builds(shared_option_name=False, pure_c=False,
remotes="https://api.bintray.com/conan/mpusz/conan-mpusz, https://api.bintray.com/conan/martinmoene/nonstd-lite")
builder.run() builder.run()