Expire pipeline cache on finish
This commit is contained in:
parent
01a28eada1
commit
404a541dbc
2 changed files with 2 additions and 0 deletions
|
@ -30,6 +30,7 @@ class BuildFinishedWorker
|
||||||
# We execute these async as these are independent operations.
|
# We execute these async as these are independent operations.
|
||||||
BuildHooksWorker.perform_async(build.id)
|
BuildHooksWorker.perform_async(build.id)
|
||||||
ArchiveTraceWorker.perform_async(build.id)
|
ArchiveTraceWorker.perform_async(build.id)
|
||||||
|
ExpirePipelineCacheWorker.perform_async(build.pipeline_id)
|
||||||
ChatNotificationWorker.perform_async(build.id) if build.pipeline.chat?
|
ChatNotificationWorker.perform_async(build.id) if build.pipeline.chat?
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -17,6 +17,7 @@ describe BuildFinishedWorker do
|
||||||
expect_any_instance_of(BuildCoverageWorker).to receive(:perform)
|
expect_any_instance_of(BuildCoverageWorker).to receive(:perform)
|
||||||
expect(BuildHooksWorker).to receive(:perform_async)
|
expect(BuildHooksWorker).to receive(:perform_async)
|
||||||
expect(ArchiveTraceWorker).to receive(:perform_async)
|
expect(ArchiveTraceWorker).to receive(:perform_async)
|
||||||
|
expect(ExpirePipelineCacheWorker).to receive(:perform_async)
|
||||||
|
|
||||||
described_class.new.perform(build.id)
|
described_class.new.perform(build.id)
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue