No bug: [mozharness] Remove unreferenced `releng_infra_configs` config files; r=nthomas

Differential Revision: https://phabricator.services.mozilla.com/D61610

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Tom Prince 2020-02-06 22:51:50 +00:00
Родитель c56289e054
Коммит dd145871f7
7 изменённых файлов: 0 добавлений и 120 удалений

Просмотреть файл

@ -1,37 +0,0 @@
# This config file has generic values needed for any job and any platform running
# on Release Engineering machines inside the VPN
from mozharness.base.script import platform_name
# These are values specific to each platform on Release Engineering machines
PYTHON_WIN32 = 'c:/mozilla-build/python27/python.exe'
# These are values specific to running machines on Release Engineering machines
# to run it locally on your machines append --cfg developer_config.py
PLATFORM_CONFIG = {
'linux64': {
'exes': {
'gittool.py': '/usr/local/bin/gittool.py',
},
'env': {
'DISPLAY': ':2',
}
},
'macosx': {
'exes': {
'gittool.py': '/usr/local/bin/gittool.py',
},
},
'win32': {
"exes": {
'gittool.py': [PYTHON_WIN32, 'c:/builds/hg-shared/build/tools/buildfarm/utils/gittool.py'],
# Otherwise, depending on the PATH we can pick python 2.6 up
'python': PYTHON_WIN32,
}
}
}
config = PLATFORM_CONFIG[platform_name()]
# Generic values
config.update({
'virtualenv_path': 'venv',
})

Просмотреть файл

@ -1,5 +0,0 @@
config = {
'env': {
'MINIDUMP_STACKWALK': '%(abs_tools_dir)s/breakpad/linux/minidump_stackwalk',
}
}

Просмотреть файл

@ -1,5 +0,0 @@
config = {
'env': {
'MINIDUMP_STACKWALK': '%(abs_tools_dir)s/breakpad/linux64/minidump_stackwalk',
}
}

Просмотреть файл

@ -1,5 +0,0 @@
config = {
'env': {
'MINIDUMP_STACKWALK': '%(abs_tools_dir)s/breakpad/osx64/minidump_stackwalk',
}
}

Просмотреть файл

@ -1,58 +0,0 @@
# This config file has generic values needed for any job and any platform running
# on Release Engineering machines inside the VPN
import os
import mozharness
from mozharness.base.script import platform_name
external_tools_path = os.path.join(
os.path.abspath(os.path.dirname(os.path.dirname(mozharness.__file__))),
'external_tools',
)
# These are values specific to each platform on Release Engineering machines
PYTHON_WIN32 = 'c:/mozilla-build/python27/python.exe'
# These are values specific to running machines on Release Engineering machines
# to run it locally on your machines append --cfg developer_config.py
PLATFORM_CONFIG = {
'linux': {
'exes': {
'gittool.py': os.path.join(external_tools_path, 'gittool.py'),
},
'env': {
'DISPLAY': ':0',
'PATH': '%(PATH)s:' + external_tools_path,
}
},
'linux64': {
'exes': {
'gittool.py': os.path.join(external_tools_path, 'gittool.py'),
},
'env': {
'DISPLAY': ':0',
'PATH': '%(PATH)s:' + external_tools_path,
}
},
'macosx': {
'exes': {
'gittool.py': os.path.join(external_tools_path, 'gittool.py'),
},
'env': {
'PATH': '%(PATH)s:' + external_tools_path,
}
},
'win32': {
"exes": {
'gittool.py': [PYTHON_WIN32, os.path.join(external_tools_path, 'gittool.py')],
# Otherwise, depending on the PATH we can pick python 2.6 up
'python': PYTHON_WIN32,
}
}
}
config = PLATFORM_CONFIG[platform_name()]
# Generic values
config.update({
'virtualenv_path': 'venv',
})

Просмотреть файл

@ -1,5 +0,0 @@
config = {
'env': {
'MINIDUMP_STACKWALK': '%(abs_tools_dir)s/breakpad/win32/minidump_stackwalk',
}
}

Просмотреть файл

@ -1,5 +0,0 @@
config = {
'env': {
'MINIDUMP_STACKWALK': '%(abs_tools_dir)s/breakpad/win64/minidump_stackwalk',
}
}