File tree Expand file tree Collapse file tree 2 files changed +19
-4
lines changed Expand file tree Collapse file tree 2 files changed +19
-4
lines changed Original file line number Diff line number Diff line change 338
338
</includes-failsafe >
339
339
</properties >
340
340
</profile >
341
+ <profile >
342
+ <id >toolkits-srg</id >
343
+ <properties >
344
+ <skipITs >false</skipITs >
345
+ <includes-failsafe >
346
+ **/ItParameterizedDomain,
347
+ **/ItMiiUpdateDomainConfig,
348
+ **/ItMiiAuxiliaryImage,
349
+ **/ItMiiNewCreateAuxImage,
350
+ **/ItMiiDynamicUpdate,
351
+ **/ItMiiSampleWlsMain,
352
+ **/ItMiiSampleWlsAux,
353
+ **/ItMiiMultiModel
354
+ </includes-failsafe >
355
+ </properties >
356
+ </profile >
341
357
</profiles >
342
358
</project >
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
- # Copyright (c) 2020, 2021 , Oracle and/or its affiliates.
2
+ # Copyright (c) 2020, 2022 , Oracle and/or its affiliates.
3
3
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
4
4
#
5
5
# This script provisions a Kubernetes cluster using Kind (https://kind.sigs.k8s.io/) and runs the new
@@ -303,12 +303,11 @@ echo 'Clean up result root...'
303
303
rm -rf " ${RESULT_ROOT:? } /*"
304
304
305
305
echo " Run tests..."
306
-
307
- if [ ${test_filter} != " **/It*" ]; then
306
+ if [ " ${test_filter} " != " **/It*" ]; then
308
307
echo " Running mvn -Dit.test=${test_filter} -Dwdt.download.url=${wdt_download_url} -Dwit.download.url=${wit_download_url} -Dwle.download.url=${wle_download_url} -DPARALLEL_CLASSES=${parallel_run} -DNUMBER_OF_THREADS=${threads} -pl integration-tests -P ${maven_profile_name} verify"
309
308
time mvn -Dit.test=" ${test_filter} " -Dwdt.download.url=" ${wdt_download_url} " -Dwit.download.url=" ${wit_download_url} " -Dwle.download.url=" ${wle_download_url} " -DPARALLEL_CLASSES=" ${parallel_run} " -DNUMBER_OF_THREADS=" ${threads} " -pl integration-tests -P ${maven_profile_name} verify 2>&1 | tee " ${RESULT_ROOT} /kindtest.log" || captureLogs
310
309
else
311
- if [ " ${maven_profile_name} " = " wls-image-cert" ] || [ " ${maven_profile_name} " = " fmw-pipeline" ] || [ " ${maven_profile_name} " = " fmw-image-cert" ] || [ " ${maven_profile_name} " = " kind-sequential" ]; then
310
+ if [ " ${maven_profile_name} " = " toolkits-srg " ] || [ " ${maven_profile_name} " = " wls-image-cert" ] || [ " ${maven_profile_name} " = " fmw-pipeline" ] || [ " ${maven_profile_name} " = " fmw-image-cert" ] || [ " ${maven_profile_name} " = " kind-sequential" ]; then
312
311
echo " Running mvn -Dwdt.download.url=${wdt_download_url} -Dwit.download.url=${wit_download_url} -Dwle.download.url=${wle_download_url} -DPARALLEL_CLASSES=${parallel_run} -DNUMBER_OF_THREADS=${threads} -pl integration-tests -P ${maven_profile_name} verify"
313
312
time mvn -Dwdt.download.url=" ${wdt_download_url} " -Dwit.download.url=" ${wit_download_url} " -Dwle.download.url=" ${wle_download_url} " -DPARALLEL_CLASSES=" ${parallel_run} " -DNUMBER_OF_THREADS=" ${threads} " -pl integration-tests -P ${maven_profile_name} verify 2>&1 | tee " ${RESULT_ROOT} /kindtest.log" || captureLogs
314
313
else
You can’t perform that action at this time.
0 commit comments