drop nasty hack making linux builds linux only

This commit is contained in:
Graham Christensen 2019-01-26 10:18:48 -05:00
parent 4c2b4df899
commit 1bf9e919bc
No known key found for this signature in database
GPG key ID: ACA1C1D120C83D5C

View file

@ -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();