File tree Expand file tree Collapse file tree 1 file changed +4
-13
lines changed Expand file tree Collapse file tree 1 file changed +4
-13
lines changed Original file line number Diff line number Diff line change 6565 with :
6666 java-version : ' 17'
6767
68- # Install SSL certificates
69- - name : Install SSL certificates
70- run : |
71- sudo cp tests/Coherence.Tests/Config/testcert.pem /usr/local/share/ca-certificates/testcert.crt
72- sudo cp tests/Coherence.Tests/Net/Ssl/CA.cer /usr/local/share/ca-certificates/CA.crt
73- sudo cp tests/Coherence.Tests/Net/Ssl/Server.cer /usr/local/share/ca-certificates/Server.crt
74- sudo update-ca-certificates
75-
7668 # Build
7769 - name : Build
7870 run : |
@@ -83,25 +75,24 @@ jobs:
8375 - name : Build test server
8476 run : |
8577 pushd tests/test-server
86- mvn --batch-mode -e clean install -s .mvn/settings.xml -Drevision=${{ matrix.coherence_version }}
78+ mvn --batch-mode -e clean install -s .mvn/settings.xml -Drevision=${{ matrix.coherence_version }} -Dcoherence.groupid=com.oracle.coherence.ce -Dmain=com.tangosol.net.DefaultCacheServer
8779 popd
8880
8981 # Start test server
9082 - name : Start test server
9183 run : |
9284 pushd tests/test-server
93- mvn --batch-mode -e exec:exec -s .mvn/settings.xml -Drevision=${{ matrix.coherence_version }} &
85+ mvn --batch-mode -e exec:exec -s .mvn/settings.xml -Drevision=${{ matrix.coherence_version }} -Dcoherence.groupid=com.oracle.coherence.ce -Dmain=com.tangosol.net.DefaultCacheServer &
9486 sleep 30
9587 popd
9688
9789 # Run Tests
9890 - name : Run Tests
99- run : dotnet test --configuration Release --no-restore
91+ run : dotnet test --filter FullyQualifiedName\!~Tangosol.Web -- configuration Release --no-restore
10092
10193 # Capture server log for diagnosing failures
10294 - name : Capture test logs
103- uses : actions/upload-artifact@v2
104- if : failure()
95+ uses : actions/upload-artifact@v4
10596 with :
10697 name : build-output
10798 path : build\**\*.log
You can’t perform that action at this time.
0 commit comments