Skip to content

Commit e1312ec

Browse files
committed
ci: process the resources during unit tests run to fix the build.
Prior 7de0591 commit the unit tests didn't use the resource and we skipped their processing on CI to have the faster builds. But now the tests need these *.properties files. Fix #1153
1 parent 1fc4545 commit e1312ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/scripts/ci/check-build-and-verify.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ if [ "$RUN_ONLY_INTEGRATION_TESTS" = 'no' ]; then
227227
print_status "$ENFORCER_STATUS" 'Run maven-enforcer-plugin'
228228

229229
if [ "$TEST_STATUS" != 'skip' ]; then
230-
mvn --batch-mode test -Denforcer.skip=true -Dmaven.resources.skip=true -DskipMinify=true -DdisableXmlReport=false -Dskip.npm -Dskip.installnodenpm \
230+
mvn --batch-mode test -Denforcer.skip=true -DskipMinify=true -DdisableXmlReport=false -Dskip.npm -Dskip.installnodenpm \
231231
>test.log 2>&1 || TEST_STATUS=fail
232232
fi
233233
print_status "$TEST_STATUS" 'Run unit tests'

0 commit comments

Comments
 (0)