Skip to content

Commit

Permalink
Remove code dependent on download_sources
Browse files Browse the repository at this point in the history
  • Loading branch information
barthalion committed Jan 4, 2022
1 parent dbf3a75 commit 73ad53b
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions master/buildbot/flathub_master.py
Original file line number Diff line number Diff line change
Expand Up @@ -1864,11 +1864,6 @@ def computeConfig():
c['workers'].append (LocalWorker(untrusted_workername))
local_workers.append(untrusted_workername)

if len(flathub_download_sources_workers) == 0:
master_source_workername = 'MasterSourceWorker'
c['workers'].append (LocalWorker(master_source_workername))
flathub_download_sources_workers.append(master_source_workername)

####### Schedulers

checkin = schedulers.AnyBranchScheduler(name="checkin",
Expand Down Expand Up @@ -1905,7 +1900,7 @@ def computeConfig():
cleanup = schedulers.Triggerable(name="cleanup-all-workers",
builderNames=computeCleanupWorkers)

c['schedulers'] = [checkin, build, download_sources, force_build, publish, update_repo, purge, periodic_purge, cleanup, force_cleanup]
c['schedulers'] = [checkin, build, force_build, publish, update_repo, purge, periodic_purge, cleanup, force_cleanup]

####### Builders

Expand Down

0 comments on commit 73ad53b

Please sign in to comment.