Skip to content

Commit 2b7b956

Browse files
committed
[FIX] docker image tests do not fail if core can not start
Currently on Apache Solr 9.8.0 the cores can not boot up, because of ``` Plugin init failure for [schema.xml] fieldType "string_collated": Error loading class 'solr.ICUCollationField' ``` but the tests suite does not fail at all. This change fixes the issue, which was caused by `prettyPrintOrExitOnError 0` Ports: f52a50e from #4290
1 parent 88918f6 commit 2b7b956

File tree

2 files changed

+171
-94
lines changed

2 files changed

+171
-94
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,12 +77,19 @@ jobs:
7777
docker image ls -a
7878
./Build/Test/cibuild_docker.sh
7979
-
80-
name: Upload artifact
80+
name: Upload Docker Image
8181
uses: actions/upload-artifact@v4
8282
with:
8383
name: solrci-image
8484
path: /tmp/solrci-image.tar
8585
retention-days: 1
86+
-
87+
name: Upload Solr-Server containers logs
88+
uses: actions/upload-artifact@v4
89+
if: always()
90+
with:
91+
name: solrci-logs
92+
path: /tmp/docker_image_logs_**/
8693

8794
test_documentation:
8895
name: test Documentation

0 commit comments

Comments
 (0)