File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ version : 2.1
2+ jobs :
3+ analytics-build :
4+ machine : true
5+ steps :
6+ - checkout
7+ - restore_cache :
8+ key : dp-dependency-cache-{{ checksum "pom.xml" }}
9+ - run :
10+ name : analytics-framework-build
11+ command : cd platform-framework && mvn clean install -DskipTests=true
12+ - run :
13+ name : data-products-build
14+ command : cd platform-modules && mvn clean install -DskipTests
15+ - run : cd platform-modules/job-manager && mvn clean package
16+ - run :
17+ name : lpa-api-build
18+ command : cd platform-api && mvn clean install -DskipTests=true
19+ - run : cd platform-api && mvn play2:dist -pl analytics-api
20+ - save_cache :
21+ key : dp-dependency-cache-{{ checksum "pom.xml" }}
22+ paths : ~/.m2
23+ - run : mkdir temp && cp platform-framework/analytics-job-driver/target/analytics-framework-1.0.jar temp/
24+ - run : cp platform-modules/batch-models/target/batch-models-1.0.jar temp/
25+ - run : cp platform-modules/job-manager/target/job-manager-1.0-distribution.tar.gz temp/
26+ - run : cp platform-api/analytics-api/target/analytics-api-1.0-dist.zip temp/
27+ - store_artifacts :
28+ path : temp
29+ destination : temp/
30+
31+
32+ workflows :
33+ version : 2.1
34+ workflow :
35+ jobs :
36+ - analytics-build
You can’t perform that action at this time.
0 commit comments