tor-browser

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

tc_common.py (631B)


      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.path
      6 
      7 import mozharness
      8 
      9 external_tools_path = os.path.join(
     10    os.path.abspath(os.path.dirname(os.path.dirname(mozharness.__file__))),
     11    "external_tools",
     12 )
     13 
     14 config = {
     15    "simple_name_move": True,
     16    "vcs_share_base": "/builds/hg-shared",
     17    "exes": {
     18        "gittool.py": [os.path.join(external_tools_path, "gittool.py")],
     19    },
     20    "upload_env": {
     21        "UPLOAD_PATH": "/builds/worker/artifacts/",
     22    },
     23 }