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 65
65
with :
66
66
java-version : ' 17'
67
67
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
-
76
68
# Build
77
69
- name : Build
78
70
run : |
@@ -83,25 +75,24 @@ jobs:
83
75
- name : Build test server
84
76
run : |
85
77
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
87
79
popd
88
80
89
81
# Start test server
90
82
- name : Start test server
91
83
run : |
92
84
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 &
94
86
sleep 30
95
87
popd
96
88
97
89
# Run Tests
98
90
- name : Run Tests
99
- run : dotnet test --configuration Release --no-restore
91
+ run : dotnet test --filter FullyQualifiedName\!~Tangosol.Web -- configuration Release --no-restore
100
92
101
93
# Capture server log for diagnosing failures
102
94
- name : Capture test logs
103
- uses : actions/upload-artifact@v2
104
- if : failure()
95
+ uses : actions/upload-artifact@v4
105
96
with :
106
97
name : build-output
107
98
path : build\**\*.log
You can’t perform that action at this time.
0 commit comments