mirror of
https://github.com/sudoxnym/fdroiddata.git
synced 2026-05-19 12:19:10 +00:00
ignore disabled changed builds in ci
This commit is contained in:
parent
d71cd481a5
commit
307ef3f6a1
1 changed files with 8 additions and 0 deletions
|
|
@ -50,6 +50,10 @@ for appid in sorted(changed):
|
|||
previous_builds[build['versionCode']] = build
|
||||
|
||||
for build in current['Builds']:
|
||||
# skip disabled builds
|
||||
if build.get('disable'):
|
||||
continue
|
||||
|
||||
vc = build['versionCode']
|
||||
if vc not in previous_builds:
|
||||
to_build.append(vc)
|
||||
|
|
@ -69,6 +73,10 @@ for appid in sorted(changed):
|
|||
with open(metadata_file) as fp:
|
||||
data = yaml.safe_load(fp)
|
||||
for build in data['Builds']:
|
||||
# skip disabled builds
|
||||
if build.get('disable'):
|
||||
continue
|
||||
|
||||
to_build.append(build['versionCode'])
|
||||
|
||||
signatures_dir = 'metadata/%s/signatures/' % appid
|
||||
|
|
|
|||
Loading…
Reference in a new issue