mirror of https://github.com/apache/druid.git
Workaround for CycloneDX is causing POM build errors (#13867)
Co-authored-by: Elliott Freis <elliottfreis@Elliott-Freis.earth.dynamic.blacklight.net>
This commit is contained in:
parent
b26f1b4a5d
commit
d046cee3e4
|
@ -106,7 +106,9 @@ jobs:
|
|||
runs-on: ubuntu-22.04
|
||||
env:
|
||||
MVN: mvn --no-snapshot-updates
|
||||
MAVEN_SKIP: -P skip-static-checks -Dweb.console.skip=true -Dmaven.javadoc.skip=true
|
||||
# Added -Dcyclonedx.skip=true to avoid ISO-8859-1 [ERROR]s
|
||||
# May be fixed in the future
|
||||
MAVEN_SKIP: -P skip-static-checks -Dweb.console.skip=true -Dmaven.javadoc.skip=true -Dcyclonedx.skip=true
|
||||
CONFIG_FILE: k8s_run_config_file.json
|
||||
IT_TEST: -Dit.test=ITNestedQueryPushDownTest
|
||||
POD_NAME: int-test
|
||||
|
|
4
it.sh
4
it.sh
|
@ -193,7 +193,9 @@ fi
|
|||
|
||||
CMD=$1
|
||||
shift
|
||||
MAVEN_IGNORE="-P skip-static-checks,skip-tests -Dmaven.javadoc.skip=true"
|
||||
# Added -Dcyclonedx.skip=true to avoid ISO-8859-1 [ERROR]s
|
||||
# May be fixed in the future
|
||||
MAVEN_IGNORE="-P skip-static-checks,skip-tests -Dmaven.javadoc.skip=true -Dcyclonedx.skip=true"
|
||||
|
||||
case $CMD in
|
||||
"help" )
|
||||
|
|
Loading…
Reference in New Issue