File tree 1 file changed +13
-6
lines changed 1 file changed +13
-6
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ echo ${JOB_TYPE}
29
29
30
30
# attempt to install 3 times with exponential backoff (starting with 10 seconds)
31
31
retry_with_backoff 3 10 \
32
- mvn install -B -V \
32
+ mvn install -B -V -U \
33
33
-DskipTests=true \
34
34
-Dclirr.skip=true \
35
35
-Denforcer.skip=true \
@@ -74,16 +74,23 @@ integration)
74
74
;;
75
75
graalvm)
76
76
# Run Unit and Integration Tests with Native Image
77
- mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Pnative -Penable-integration-tests \
78
- -Dit.test=! ITBigQueryWrite* RetryTest \
79
- -Dsurefire.failIfNoSpecifiedTests=false \
80
- -Dfailsafe.failIfNoSpecifiedTests=false \
81
- test
77
+ mvn -B ${INTEGRATION_TEST_ARGS} \
78
+ -Penable-integration-tests \
79
+ -Pnative \
80
+ -DtrimStackTrace=false \
81
+ -Dclirr.skip=true \
82
+ -Denforcer.skip=true \
83
+ -Dit.test=! ITBigQueryWrite* RetryTest \
84
+ -Dsurefire.failIfNoSpecifiedTests=false \
85
+ -Dfailsafe.failIfNoSpecifiedTests=false \
86
+ -fae \
87
+ test
82
88
RETURN_CODE=$?
83
89
;;
84
90
graalvm17)
85
91
# Run Unit and Integration Tests with Native Image
86
92
mvn -B ${INTEGRATION_TEST_ARGS} -ntp -Pnative -Penable-integration-tests \
93
+ -Dtest=! ITBigQueryWrite* RetryTest \
87
94
-Dit.test=! ITBigQueryWrite* RetryTest \
88
95
-Dsurefire.failIfNoSpecifiedTests=false \
89
96
-Dfailsafe.failIfNoSpecifiedTests=false \
You can’t perform that action at this time.
0 commit comments