fix(build): ensure make and zip are installed

This is an identical fix to the one we made in the infinitegforums repo
in CL:3143. These packages are necessary for the build to succeed.

Change-Id: I8e8ae50d1bc5c78c6a46e059411aa40182491320
diff --git a/playbooks/lint/pre.yaml b/playbooks/lint/pre.yaml
index 964416f..5640fa6 100644
--- a/playbooks/lint/pre.yaml
+++ b/playbooks/lint/pre.yaml
@@ -1,3 +1,5 @@
 - hosts: all
   roles:
+    - role: ensure-build-essential
+    - role: ensure-zip
     - role: ensure-genmanifest
diff --git a/playbooks/nightly-build/pre.yaml b/playbooks/nightly-build/pre.yaml
index 45db95f..66c6ba1 100644
--- a/playbooks/nightly-build/pre.yaml
+++ b/playbooks/nightly-build/pre.yaml
@@ -1,5 +1,7 @@
 - hosts: all
   roles:
+    - role: ensure-build-essential
+    - role: ensure-zip
     - role: ensure-genmanifest
     - role: ensure-cws-upload
       version: "2.1.0"