mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-13 22:42:29 +03:00
add force_build_tools config option
This replaces the current default behavior of always forcing the build_tools version and allows the user to set build-tools forcing in config.py. closes #147
This commit is contained in:
parent
400acdefab
commit
c352605768
4 changed files with 17 additions and 13 deletions
|
@ -25,6 +25,10 @@
|
||||||
# Build tools version to be used
|
# Build tools version to be used
|
||||||
# build_tools = "23.0.3"
|
# build_tools = "23.0.3"
|
||||||
|
|
||||||
|
# Force all build to use the above version of build -tools, good for testing
|
||||||
|
# builds without having all of the possible build-tools installed.
|
||||||
|
# force_build_tools = True
|
||||||
|
|
||||||
# Command or path to binary for running Ant
|
# Command or path to binary for running Ant
|
||||||
# ant = "ant"
|
# ant = "ant"
|
||||||
|
|
||||||
|
@ -232,10 +236,10 @@ The repository of older versions of applications from the main demo repository.
|
||||||
# --server option on dedicated secure build server hosts.
|
# --server option on dedicated secure build server hosts.
|
||||||
# build_server_always = True
|
# build_server_always = True
|
||||||
|
|
||||||
# By default, fdroid will use YAML and the custom .txt metadata formats. It
|
# By default, fdroid will use YAML .yml and the custom .txt metadata formats. It
|
||||||
# is also possible to have metadata in JSON and XML by adding 'json' and
|
# is also possible to have metadata in JSON and XML by adding 'json' and
|
||||||
# 'xml'.
|
# 'xml'.
|
||||||
# accepted_formats = ['txt', 'yaml']
|
# accepted_formats = ['txt', 'yml']
|
||||||
|
|
||||||
# Limit in number of characters that fields can take up
|
# Limit in number of characters that fields can take up
|
||||||
# Only the fields listed here are supported, defaults shown
|
# Only the fields listed here are supported, defaults shown
|
||||||
|
|
|
@ -431,8 +431,7 @@ def build_server(app, build, vcs, build_dir, output_dir, force):
|
||||||
release_vm()
|
release_vm()
|
||||||
|
|
||||||
|
|
||||||
def adapt_gradle(build_dir):
|
def force_gradle_build_tools(build_dir, build_tools):
|
||||||
filename = 'build.gradle'
|
|
||||||
for root, dirs, files in os.walk(build_dir):
|
for root, dirs, files in os.walk(build_dir):
|
||||||
for filename in files:
|
for filename in files:
|
||||||
if not filename.endswith('.gradle'):
|
if not filename.endswith('.gradle'):
|
||||||
|
@ -440,9 +439,9 @@ def adapt_gradle(build_dir):
|
||||||
path = os.path.join(root, filename)
|
path = os.path.join(root, filename)
|
||||||
if not os.path.isfile(path):
|
if not os.path.isfile(path):
|
||||||
continue
|
continue
|
||||||
logging.debug("Adapting %s at %s" % (filename, path))
|
logging.debug("Forcing build-tools %s in %s" % (build_tools, path))
|
||||||
common.regsub_file(r"""(\s*)buildToolsVersion([\s=]+).*""",
|
common.regsub_file(r"""(\s*)buildToolsVersion([\s=]+).*""",
|
||||||
r"""\1buildToolsVersion\2'%s'""" % config['build_tools'],
|
r"""\1buildToolsVersion\2'%s'""" % build_tools,
|
||||||
path)
|
path)
|
||||||
|
|
||||||
|
|
||||||
|
@ -512,9 +511,10 @@ def build_local(app, build, vcs, build_dir, output_dir, srclib_dir, extlib_dir,
|
||||||
|
|
||||||
gradletasks += ['assemble' + flavours_cmd + 'Release']
|
gradletasks += ['assemble' + flavours_cmd + 'Release']
|
||||||
|
|
||||||
adapt_gradle(build_dir)
|
if config['force_build_tools']:
|
||||||
for name, number, libpath in srclibpaths:
|
force_gradle_build_tools(build_dir, config['build_tools'])
|
||||||
adapt_gradle(libpath)
|
for name, number, libpath in srclibpaths:
|
||||||
|
force_gradle_build_tools(libpath, config['build_tools'])
|
||||||
|
|
||||||
cmd = [config['gradle']]
|
cmd = [config['gradle']]
|
||||||
if build.gradleprops:
|
if build.gradleprops:
|
||||||
|
|
|
@ -59,6 +59,7 @@ default_config = {
|
||||||
'r10e': "$ANDROID_NDK",
|
'r10e': "$ANDROID_NDK",
|
||||||
},
|
},
|
||||||
'build_tools': "23.0.3",
|
'build_tools': "23.0.3",
|
||||||
|
'force_build_tools': False,
|
||||||
'java_paths': None,
|
'java_paths': None,
|
||||||
'ant': "ant",
|
'ant': "ant",
|
||||||
'mvn3': "mvn",
|
'mvn3': "mvn",
|
||||||
|
|
|
@ -46,7 +46,7 @@ class BuildTest(unittest.TestCase):
|
||||||
self.assertTrue(os.path.exists(path))
|
self.assertTrue(os.path.exists(path))
|
||||||
self.assertTrue(os.path.isfile(path))
|
self.assertTrue(os.path.isfile(path))
|
||||||
|
|
||||||
def test_adapt_gradle(self):
|
def test_force_gradle_build_tools(self):
|
||||||
testsbase = os.path.join(os.path.dirname(__file__), '..', '.testfiles')
|
testsbase = os.path.join(os.path.dirname(__file__), '..', '.testfiles')
|
||||||
if not os.path.exists(testsbase):
|
if not os.path.exists(testsbase):
|
||||||
os.makedirs(testsbase)
|
os.makedirs(testsbase)
|
||||||
|
@ -54,9 +54,7 @@ class BuildTest(unittest.TestCase):
|
||||||
shutil.copytree(os.path.join(os.path.dirname(__file__), 'source-files'),
|
shutil.copytree(os.path.join(os.path.dirname(__file__), 'source-files'),
|
||||||
os.path.join(testsdir, 'source-files'))
|
os.path.join(testsdir, 'source-files'))
|
||||||
teststring = 'FAKE_VERSION_FOR_TESTING'
|
teststring = 'FAKE_VERSION_FOR_TESTING'
|
||||||
fdroidserver.build.config = {}
|
fdroidserver.build.force_gradle_build_tools(testsdir, teststring)
|
||||||
fdroidserver.build.config['build_tools'] = teststring
|
|
||||||
fdroidserver.build.adapt_gradle(testsdir)
|
|
||||||
pattern = re.compile(bytes("buildToolsVersion[\s=]+'%s'\s+" % teststring, 'utf8'))
|
pattern = re.compile(bytes("buildToolsVersion[\s=]+'%s'\s+" % teststring, 'utf8'))
|
||||||
for p in ('source-files/fdroid/fdroidclient/build.gradle',
|
for p in ('source-files/fdroid/fdroidclient/build.gradle',
|
||||||
'source-files/Zillode/syncthing-silk/build.gradle',
|
'source-files/Zillode/syncthing-silk/build.gradle',
|
||||||
|
@ -67,6 +65,7 @@ class BuildTest(unittest.TestCase):
|
||||||
filedata = f.read()
|
filedata = f.read()
|
||||||
self.assertIsNotNone(pattern.search(filedata))
|
self.assertIsNotNone(pattern.search(filedata))
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
parser = optparse.OptionParser()
|
parser = optparse.OptionParser()
|
||||||
parser.add_option("-v", "--verbose", action="store_true", default=False,
|
parser.add_option("-v", "--verbose", action="store_true", default=False,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue