File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 1
1
.idea /
2
+ spark /
2
3
integration-test /target /
3
4
* .class
4
5
* .log
5
- * .iml
6
+ * .iml
Original file line number Diff line number Diff line change @@ -90,9 +90,11 @@ git checkout -B $BRANCH origin/$BRANCH
90
90
TAG=$( git rev-parse HEAD | cut -c -6)
91
91
echo " Spark distribution built at SHA $TAG "
92
92
93
+ cd $SPARK_REPO_ROOT /dist
94
+
93
95
if [[ $DEPLOY_MODE == cloud ]] ;
94
96
then
95
- cd dist && ./sbin/build-push-docker-images.sh -r $IMAGE_REPO -t $TAG build
97
+ ./sbin/build-push-docker-images.sh -r $IMAGE_REPO -t $TAG build
96
98
if [[ $IMAGE_REPO == gcr.io* ]] ;
97
99
then
98
100
gcloud docker -- push $IMAGE_REPO /spark-driver:$TAG && \
@@ -103,10 +105,11 @@ then
103
105
fi
104
106
else
105
107
# -m option for minikube.
106
- cd dist && ./sbin/build-push-docker-images.sh -m -r $IMAGE_REPO -t $TAG build
108
+ ./sbin/build-push-docker-images.sh -m -r $IMAGE_REPO -t $TAG build
107
109
fi
108
110
109
- $TEST_ROOT /integration-test/build/mvn clean -Ddownload.plugin.skip=true integration-test \
111
+ cd $TEST_ROOT /integration-test
112
+ $SPARK_REPO_ROOT /build/mvn clean -Ddownload.plugin.skip=true integration-test \
110
113
-Dspark-distro-tgz=$SPARK_REPO_ROOT /* .tgz \
111
114
-DextraScalaTestArgs=" -Dspark.kubernetes.test.master=k8s://$MASTER \
112
115
-Dspark.docker.test.driverImage=$IMAGE_REPO /spark-driver:$TAG \
You can’t perform that action at this time.
0 commit comments