Skip to content

Commit eaf0db8

Browse files
committed
Remove parallel maven builds again
1 parent cc8731a commit eaf0db8

2 files changed

Lines changed: 1 addition & 4 deletions

File tree

hadoop/hadoop/Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,6 @@ tar -czf /stackable/hadoop-${NEW_VERSION}-src.tar.gz .
9393
# Therefore, this build does work but the final image does NOT contain the openssl-devel package which is why it fails there which is why we have to create the symlink over there manually.
9494
# We still leave this flag in to automatically fail should anything with the packages or symlinks ever fail.
9595
mvn \
96-
--threads 1C \
9796
clean package install \
9897
-Pdist,native \
9998
-pl '!hadoop-tools/hadoop-pipes' \

hive/Dockerfile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ tar -czf /stackable/hive-${NEW_VERSION}-src.tar.gz .
6161

6262
if [[ "${PRODUCT_VERSION}" == "3.1.3" ]] ; then
6363
mvn \
64-
--threads 1C \
6564
clean package \
6665
-DskipTests \
6766
--projects standalone-metastore
@@ -71,7 +70,6 @@ elif [[ "${PRODUCT_VERSION}" == 4.0.* ]]; then
7170
(
7271
# https://issues.apache.org/jira/browse/HIVE-20451 switched the metastore server packaging starting with 4.0.0
7372
mvn \
74-
--threads 1C \
7573
clean package \
7674
-DskipTests \
7775
-Dhadoop.version=${HADOOP_VERSION}-stackable${RELEASE_VERSION}
@@ -85,7 +83,7 @@ elif [[ "${PRODUCT_VERSION}" == 4.0.* ]]; then
8583
)
8684
else
8785
# Starting with 4.1.0 the build process changed again in https://github.com/apache/hive/pull/5936 (HIVE-29062)
88-
mvn --threads 1C \
86+
mvn \
8987
clean package \
9088
-Dhadoop.version=${HADOOP_VERSION}-stackable${RELEASE_VERSION} \
9189
-DskipTests \

0 commit comments

Comments
 (0)