From 5cea2aacb233f2c3144bd8c42d64161ad3241f3b Mon Sep 17 00:00:00 2001 From: Aldo Cortesi Date: Thu, 8 Mar 2018 08:09:01 +1300 Subject: release: build snapshots for all branches on the main repo --- release/ci.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'release/ci.py') diff --git a/release/ci.py b/release/ci.py index 53a2632f..43fde3dc 100755 --- a/release/ci.py +++ b/release/ci.py @@ -56,7 +56,6 @@ PYINSTALLER_DIST = join(BUILD_DIR, "binaries", PLATFORM_TAG) VENV_DIR = join(BUILD_DIR, "venv") # Project Configuration -SNAPSHOT_BRANCHES = ["master", "updocs"] VERSION_FILE = join(ROOT_DIR, "mitmproxy", "version.py") BDISTS = { "mitmproxy": ["mitmproxy", "mitmdump", "mitmweb"], @@ -75,10 +74,10 @@ TAG = os.environ.get("TRAVIS_TAG", os.environ.get("APPVEYOR_REPO_TAG_NAME", None BRANCH = os.environ.get("TRAVIS_BRANCH", os.environ.get("APPVEYOR_REPO_BRANCH", None)) if TAG: VERSION = TAG -elif BRANCH in SNAPSHOT_BRANCHES: +elif BRANCH: VERSION = BRANCH else: - print("Branch %s is not build branch - exiting." % BRANCH) + print("Could not establish build name - exiting." % BRANCH) sys.exit(0) -- cgit v1.2.3