You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@druid.apache.org by pr...@apache.org on 2023/03/02 00:47:25 UTC

[druid] branch master updated: Workaround for CycloneDX is causing POM build errors (#13867)

This is an automated email from the ASF dual-hosted git repository.

progers pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/druid.git


The following commit(s) were added to refs/heads/master by this push:
     new d046cee3e4 Workaround for CycloneDX is causing POM build errors (#13867)
d046cee3e4 is described below

commit d046cee3e43bcf895eb7c13d0c8b413141734fbf
Author: Elliott Freis <10...@users.noreply.github.com>
AuthorDate: Wed Mar 1 16:47:13 2023 -0800

    Workaround for CycloneDX is causing POM build errors (#13867)
    
    Co-authored-by: Elliott Freis <el...@Elliott-Freis.earth.dynamic.blacklight.net>
---
 .github/workflows/standard-its.yml | 4 +++-
 it.sh                              | 4 +++-
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/standard-its.yml b/.github/workflows/standard-its.yml
index 9909ce012f..8f2d236152 100644
--- a/.github/workflows/standard-its.yml
+++ b/.github/workflows/standard-its.yml
@@ -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
diff --git a/it.sh b/it.sh
index b03b7acb57..f38dec3f12 100755
--- a/it.sh
+++ b/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" )


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@druid.apache.org
For additional commands, e-mail: commits-help@druid.apache.org