mirror of https://github.com/apache/druid.git
Add option to run standard & revised ITs manually on PRs (#13814)
Create the docker image in case of maven dependencies cache restore failure too as env.sh file is removed on maven rebuild. Increase java heap size for security IT failing with error
This commit is contained in:
parent
882ae9f002
commit
e788f1ae6b
|
@ -90,7 +90,7 @@ jobs:
|
|||
./it.sh ci
|
||||
|
||||
- name: Create docker image
|
||||
if: steps.docker-restore.outputs.cache-hit != 'true'
|
||||
if: steps.docker-restore.outputs.cache-hit != 'true' || steps.maven-restore.outputs.cache-hit != 'true'
|
||||
env:
|
||||
docker-restore: ${{ toJson(steps.docker-restore.outputs) }}
|
||||
run: |
|
||||
|
|
|
@ -86,5 +86,5 @@ jobs:
|
|||
run: |
|
||||
# Debug echo
|
||||
echo "Mysql driver: ${MYSQL_DRIVER_CLASSNAME}"
|
||||
echo "MAVEN_OPTS='-Xmx2048m' ${MVN} verify -pl integration-tests -P integration-tests ${{ inputs.testing_groups }} -Djvm.runtime=${{ inputs.runtime_jdk }} -Dit.indexer=${{ inputs.use_indexer }} ${MAVEN_SKIP} -Doverride.config.path=${{ inputs.override_config_path }}"
|
||||
MAVEN_OPTS='-Xmx2048m' ${MVN} verify -pl integration-tests -P integration-tests ${{ inputs.testing_groups }} -Djvm.runtime=${{ inputs.runtime_jdk }} -Dit.indexer=${{ inputs.use_indexer }} ${MAVEN_SKIP} -Doverride.config.path=${{ inputs.override_config_path }}
|
||||
echo "${MVN} verify -pl integration-tests -P integration-tests ${{ inputs.testing_groups }} -Djvm.runtime=${{ inputs.runtime_jdk }} -Dit.indexer=${{ inputs.use_indexer }} ${MAVEN_SKIP} -Doverride.config.path=${{ inputs.override_config_path }}"
|
||||
${MVN} verify -pl integration-tests -P integration-tests ${{ inputs.testing_groups }} -Djvm.runtime=${{ inputs.runtime_jdk }} -Dit.indexer=${{ inputs.use_indexer }} ${MAVEN_SKIP} -Doverride.config.path=${{ inputs.override_config_path }}
|
||||
|
|
|
@ -15,7 +15,8 @@
|
|||
|
||||
# Github workflow that runs revised/new ITs
|
||||
on:
|
||||
workflow_call
|
||||
workflow_call:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
it:
|
||||
|
|
|
@ -15,7 +15,8 @@
|
|||
|
||||
# Github workflow that runs standard/old ITs
|
||||
on:
|
||||
workflow_call
|
||||
workflow_call:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
integration-index-tests-middleManager:
|
||||
|
|
|
@ -649,7 +649,7 @@
|
|||
</property>
|
||||
</properties>
|
||||
<argLine>
|
||||
-Xmx64m
|
||||
-Xmx128m
|
||||
-Duser.timezone=UTC
|
||||
-Dfile.encoding=UTF-8
|
||||
-Ddruid.test.config.dockerIp=${env.DOCKER_IP}
|
||||
|
|
3
it.sh
3
it.sh
|
@ -185,6 +185,7 @@ function verify_env_vars {
|
|||
|
||||
CMD=$1
|
||||
shift
|
||||
MAVEN_IGNORE="-P skip-static-checks,skip-tests -Dmaven.javadoc.skip=true"
|
||||
|
||||
case $CMD in
|
||||
"help" )
|
||||
|
@ -194,7 +195,7 @@ case $CMD in
|
|||
mvn -q clean package dependency:go-offline -P dist $MAVEN_IGNORE
|
||||
;;
|
||||
"build" )
|
||||
mvn clean package -P dist,skip-static-checks,skip-tests -Dmaven.javadoc.skip=true -T1.0C $*
|
||||
mvn clean package -P dist $MAVEN_IGNORE -T1.0C $*
|
||||
;;
|
||||
"dist" )
|
||||
mvn package -P dist $MAVEN_IGNORE -pl :distribution
|
||||
|
|
Loading…
Reference in New Issue