tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

linux64_config_taskcluster.py (851B)


      1 # This Source Code Form is subject to the terms of the Mozilla Public
      2 # License, v. 2.0. If a copy of the MPL was not distributed with this
      3 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
      4 
      5 import os
      6 import sys
      7 
      8 PYTHON = sys.executable
      9 VENV_PATH = "%s/build/venv" % os.getcwd()
     10 
     11 exes = {
     12    "python": PYTHON,
     13 }
     14 ABS_WORK_DIR = os.path.join(os.getcwd(), "build")
     15 INSTALLER_PATH = os.path.join(ABS_WORK_DIR, "installer.tar.xz")
     16 
     17 config = {
     18    "log_name": "raptor",
     19    "installer_path": INSTALLER_PATH,
     20    "virtualenv_path": VENV_PATH,
     21    "exes": exes,
     22    "title": os.uname()[1].lower().split(".")[0],
     23    "default_actions": [
     24        "clobber",
     25        "download-and-extract",
     26        "populate-webroot",
     27        "create-virtualenv",
     28        "install",
     29        "run-tests",
     30    ],
     31    "tooltool_cache": "/builds/worker/tooltool-cache",
     32 }