You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cd "$(/stackable/patchable --images-repo-root=src checkout druid ${PRODUCT})"
55
+
cd "$(cat /tmp/DRUID_SOURCE_DIR)" || exit 1
56
+
rm /tmp/DRUID_SOURCE_DIR
51
57
52
58
mvn \
53
59
--batch-mode \
54
60
--no-transfer-progress \
55
61
clean install \
56
62
-Pdist,stackable-bundle-contrib-exts \
57
-
-DskipTests \
58
-
-Dmaven.javadoc.skip=true \
59
-
-Dmaven.gitcommitid.skip=true
63
+
-Dmaven.test.skip `# Skip test compilation` \
64
+
-DskipTests `# Skip test execution` \
65
+
-Dcheckstyle.skip `# Skip checkstyle checks. We dont care if the code is properly formatted, it just wastes time` \
66
+
-Dmaven.javadoc.skip=true `# Dont generate javadoc` \
67
+
-Dmaven.gitcommitid.skip=true \
68
+
--projects '!quidem-ut' `# This is just a maven module for tests. https://github.com/apache/druid/pull/16867 added https://raw.githubusercontent.com/kgyrtkirk/datasets/repo/ as a Maven repository, which fails to pull for us (Failed to execute goal on project druid-quidem-ut: Could not resolve dependencies for project org.apache.druid:druid-quidem-ut:jar:33.0.0: com.github.kgyrtkirk.datasets:kttm-nested:jar:0.1 was not found in https://build-repo.stackable.tech/repository/maven-public/). By disabling the maven module we dont pull in this weird dependency...`
0 commit comments