File tree Expand file tree Collapse file tree 1 file changed +16
-6
lines changed Expand file tree Collapse file tree 1 file changed +16
-6
lines changed Original file line number Diff line number Diff line change @@ -67,11 +67,20 @@ if [[ ! "$@" =~ --package-only ]]; then
67
67
git tag $GIT_TAG
68
68
69
69
rm -rf $SPARK_REPO
70
- mvn -DskipTests \
71
- -Dhadoop.version=2.2.0 -Dyarn.version=2.2.0 \
72
- -Dtag=$GIT_TAG -DautoVersionSubmodules=true \
70
+
71
+ # TODO REMOVE THIS!!!
72
+ find . -name * .scala | xargs rm
73
+ find . -name * .java | xargs rm
74
+
75
+ mvn -DskipTests -Dhadoop.version=2.2.0 -Dyarn.version=2.2.0 \
73
76
-Pyarn -Phive -Phadoop-2.2 -Pspark-ganglia-lgpl -Pkinesis-asl \
74
- install
77
+ clean install
78
+
79
+ ./dev/change-version-to-2.11.sh
80
+
81
+ mvn -DskipTests -Dhadoop.version=2.2.0 -Dyarn.version=2.2.0 \
82
+ -Pscala-2.11 -Pyarn -Phive -Phadoop-2.2 -Pspark-ganglia-lgpl -Pkinesis-asl \
83
+ clean install
75
84
76
85
pushd $SPARK_REPO
77
86
@@ -101,8 +110,9 @@ if [[ ! "$@" =~ --package-only ]]; then
101
110
-e " s/$RELEASE_VERSION /${NEXT_VERSION} -SNAPSHOT/" {}
102
111
git commit -a -m " Preparing development version ${NEXT_VERSION} -SNAPSHOT"
103
112
104
- git push origin $GIT_TAG
105
- git push origin HEAD:$BRANCH_NAME
113
+ # TODO: ADD THIS BACK!!!
114
+ # git push origin $GIT_TAG
115
+ # git push origin HEAD:$BRANCH_NAME
106
116
popd
107
117
rm -rf spark
108
118
fi
You can’t perform that action at this time.
0 commit comments