File tree Expand file tree Collapse file tree 2 files changed +18
-20
lines changed
Expand file tree Collapse file tree 2 files changed +18
-20
lines changed Original file line number Diff line number Diff line change @@ -36,23 +36,4 @@ deployment:
3636 release :
3737 tag : /[0-9]+(?:\.[0-9]+)+-palantir[0-9]+/
3838 commands :
39- - ? |
40- set -euo pipefail
41- FLAGS="-Psparkr -Phive -Phive-thriftserver -Pyarn -Pmesos"
42- case $CIRCLE_NODE_INDEX in
43- 0)
44- ./build/sbt -Phadoop-2.7 -Pmesos -Pkinesis-asl -Pyarn -Phive-thriftserver -Phive publish
45- ;;
46- 1)
47- ./dev/make-distribution.sh --name without-hadoop --tgz "-Psparkr -Phadoop-provided -Pyarn -Pmesos" \
48- 2>&1 > binary-release-without-hadoop.log
49- ;;
50- 2)
51- ./dev/make-distribution.sh --name hadoop2.7 --tgz "-Phadoop2.7 $FLAGS" \
52- 2>&1 > binary-release-hadoop2.7.log
53- ;;
54- esac
55- :
56- parallel: true
57- timeout: 1200
58-
39+ - ./dev/publish.sh
Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+ set -euo pipefail
3+
4+ FLAGS=" -Psparkr -Phive -Phive-thriftserver -Pyarn -Pmesos"
5+ case $CIRCLE_NODE_INDEX in
6+ 0)
7+ ./build/sbt -Phadoop-2.7 -Pmesos -Pkinesis-asl -Pyarn -Phive-thriftserver -Phive publish
8+ ;;
9+ 1)
10+ ./dev/make-distribution.sh --name without-hadoop --tgz " -Psparkr -Phadoop-provided -Pyarn -Pmesos" \
11+ 2>&1 > binary-release-without-hadoop.log
12+ ;;
13+ 2)
14+ ./dev/make-distribution.sh --name hadoop2.7 --tgz " -Phadoop2.7 $FLAGS " \
15+ 2>&1 > binary-release-hadoop2.7.log
16+ ;;
17+ esac
You can’t perform that action at this time.
0 commit comments