You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@metron.apache.org by rm...@apache.org on 2017/04/10 19:17:52 UTC

incubator-metron git commit: METRON-839 RPM build should happen after archives are built (merrimanr) closes apache/incubator-metron#522

Repository: incubator-metron
Updated Branches:
  refs/heads/master 7c1a56549 -> ba7330950


METRON-839 RPM build should happen after archives are built (merrimanr) closes apache/incubator-metron#522


Project: http://git-wip-us.apache.org/repos/asf/incubator-metron/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-metron/commit/ba733095
Tree: http://git-wip-us.apache.org/repos/asf/incubator-metron/tree/ba733095
Diff: http://git-wip-us.apache.org/repos/asf/incubator-metron/diff/ba733095

Branch: refs/heads/master
Commit: ba73309502eed5dabedec1276d1101c83568a6de
Parents: 7c1a565
Author: merrimanr <me...@gmail.com>
Authored: Mon Apr 10 14:17:18 2017 -0500
Committer: YOUR NAME as In Apache <YO...@apache.org>
Committed: Mon Apr 10 14:17:18 2017 -0500

----------------------------------------------------------------------
 metron-deployment/roles/metron-builder/tasks/main.yml | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-metron/blob/ba733095/metron-deployment/roles/metron-builder/tasks/main.yml
----------------------------------------------------------------------
diff --git a/metron-deployment/roles/metron-builder/tasks/main.yml b/metron-deployment/roles/metron-builder/tasks/main.yml
index 3f4906e..eb8717a 100644
--- a/metron-deployment/roles/metron-builder/tasks/main.yml
+++ b/metron-deployment/roles/metron-builder/tasks/main.yml
@@ -15,7 +15,12 @@
 #  limitations under the License.
 #
 ---
-- name: Build Deployment Artifacts
-  local_action: shell cd {{ metron_build_dir }} && mvn clean package -DskipTests -T 2C -P HDP-2.5.0.0,mpack,build-rpms
+- name: Build Metron
+  local_action: shell cd {{ metron_build_dir }} && mvn clean package -DskipTests -T 2C -P HDP-2.5.0.0,mpack
+  become: false
+  run_once: true
+
+- name: Build Metron RPMs
+  local_action: shell cd {{ metron_build_dir }} && mvn clean package -DskipTests -P build-rpms
   become: false
   run_once: true