Skip to content
This repository has been archived by the owner on May 12, 2021. It is now read-only.

METRON-885 Build RPMs in Travis #1573

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ install: true
language: java
jdk:
- oraclejdk8
services:
- docker
before_install:
- export M2_HOME=$PWD/apache-maven-3.3.9
- export PATH=$M2_HOME/bin:$PATH
Expand All @@ -44,6 +46,11 @@ matrix:
- time mvn install -T 2C -q -DskipTests=true -Dmaven.javadoc.skip=true -B -V -pl '!:metron-config,!:metron-alerts'
- time mvn surefire:test@integration-tests

- name: Build RPMs
script:
- time mvn install -T 2C -q -DskipTests=true -Dmaven.javadoc.skip=true -B -V
- time mvn package -Pbuild-rpms -q -DskipTests=true -Dmaven.javadoc.skip=true -B -V

- name: Alerts UI Tests
script:
- time mvn install -T 2C -q -DskipTests=true -Dmaven.javadoc.skip=true -B -V -pl ':metron-alerts'
Expand Down