Commit e8fdcd3 1 parent 6890b58 commit e8fdcd3 Copy full SHA for e8fdcd3
File tree 5 files changed +12
-11
lines changed
eventmesh-sdks/eventmesh-sdk-c/configs
5 files changed +12
-11
lines changed Original file line number Diff line number Diff line change 58
58
- name : GenerateGrammarSource
59
59
run : ./gradlew clean generateGrammarSource --parallel --daemon --scan
60
60
env :
61
- DEVELOCITY_ACCESS_KEY : ${{ secrets.GE_ACCESS_TOKEN }}
61
+ DEVELOCITY_ACCESS_KEY : ${{ secrets.DEVELOCITY_ACCESS_KEY }}
62
62
63
63
- name : Set up JDK ${{ matrix.java }}
64
64
uses : actions/setup-java@v4
@@ -72,12 +72,12 @@ jobs:
72
72
./gradlew clean build dist jacocoTestReport --parallel --daemon --scan
73
73
-x spotlessJava -x generateGrammarSource -x generateDistLicense -x checkDeniedLicense
74
74
env :
75
- DEVELOCITY_ACCESS_KEY : ${{ secrets.GE_ACCESS_TOKEN }}
75
+ DEVELOCITY_ACCESS_KEY : ${{ secrets.DEVELOCITY_ACCESS_KEY }}
76
76
77
77
- name : Install plugin
78
78
run : ./gradlew installPlugin --scan
79
79
env :
80
- DEVELOCITY_ACCESS_KEY : ${{ secrets.GE_ACCESS_TOKEN }}
80
+ DEVELOCITY_ACCESS_KEY : ${{ secrets.DEVELOCITY_ACCESS_KEY }}
81
81
82
82
- name : Upload coverage report to codecov.io
83
83
run : bash <(curl -s https://codecov.io/bash) || echo 'Failed to upload coverage report!'
Original file line number Diff line number Diff line change 68
68
if : matrix.language == 'java'
69
69
run : ./gradlew clean assemble compileTestJava --parallel --daemon --scan
70
70
env :
71
- DEVELOCITY_ACCESS_KEY : ${{ secrets.GE_ACCESS_TOKEN }}
71
+ DEVELOCITY_ACCESS_KEY : ${{ secrets.DEVELOCITY_ACCESS_KEY }}
72
72
73
73
- name : Perform CodeQL analysis
74
74
uses : github/codeql-action/analyze@v3
Original file line number Diff line number Diff line change @@ -91,6 +91,6 @@ eventmesh-runtime-0-a-0 1/1 Running 0 12m
91
91
92
92
kubectl get pods -o wide
93
93
NAME READY STATUS RESTARTS AGE IP NODE NOMINATED NODE READINESS GATES
94
- connector-rocketmq-0 1/1 Running 0 13m 127.0 .0.1 minikube < none> < none>
95
- eventmesh-runtime-0-a-0 1/1 Running 0 13m 127.0 .0.1 minikube < none> < none>
94
+ connector-rocketmq-0 1/1 Running 0 13m 10.244 .0.21 minikube < none> < none>
95
+ eventmesh-runtime-0-a-0 1/1 Running 0 13m 10.244 .0.20 minikube < none> < none>
96
96
```
Original file line number Diff line number Diff line change 15
15
16
16
consumerSysId 1000
17
17
consumerSysVersion 1.0.0
18
- consumerSvrId 127.0.0.1
18
+ consumerSvrId 10.199.199.199
19
19
consumerDcn A00
20
20
orgId 99996
21
21
localIdc A
@@ -49,7 +49,7 @@ ReqGslSwitch 0
49
49
50
50
#wemq cc configure
51
51
wemqUseHttpCfg 1
52
- configCenterIp 127.0.0.1
52
+ configCenterIp 10.255.34.57
53
53
configCenterPort 8090
54
54
configCenterAddrMulti 127.0.0.1:8090
55
55
#connect directly to access when: wemqUseHttpCfg 0
Original file line number Diff line number Diff line change 16
16
*/
17
17
18
18
plugins {
19
- id ' com.gradle.develocity' version ' 3.18.1 '
19
+ id ' com.gradle.develocity' version ' 3.18.2 '
20
20
id ' com.gradle.common-custom-user-data-gradle-plugin' version ' 2.0.2'
21
21
}
22
22
23
23
def isCiServer = System . getenv(). containsKey(" CI" )
24
24
25
25
develocity {
26
- server = " https://ge.apache.org"
26
+ server = " https://develocity.apache.org"
27
+ projectId = " eventmesh"
27
28
buildScan {
28
29
uploadInBackground = ! isCiServer
29
- publishing. onlyIf { false }
30
+ publishing. onlyIf { it . isAuthenticated() }
30
31
obfuscation {
31
32
ipAddresses { addresses -> addresses. collect { address -> " 0.0.0.0" } }
32
33
}
You can’t perform that action at this time.
0 commit comments