diff --git a/ofborg/src/tasks/build.rs b/ofborg/src/tasks/build.rs index 6394849..e0499bf 100644 --- a/ofborg/src/tasks/build.rs +++ b/ofborg/src/tasks/build.rs @@ -101,10 +101,6 @@ impl<'a, 'b> JobActions<'a, 'b> { self.tell(worker::Action::Ack); } - pub fn nasty_hack_linux_only(&mut self) { - self.tell(worker::Action::Ack); - } - pub fn nothing_to_do(&mut self) { self.tell(worker::Action::Ack); } @@ -310,11 +306,6 @@ impl notifyworker::SimpleNotifyWorker for BuildWorker { _ => nix::File::DefaultNixpkgs, }; - if buildfile == nix::File::ReleaseNixOS && self.system == "x86_64-darwin" { - actions.nasty_hack_linux_only(); - return; - } - let refpath = co.checkout_origin_ref(target_branch.as_ref()).unwrap(); co.fetch_pr(job.pr.number).unwrap();