Skip to content

Commit 53b623f

Browse files
authored
chore: Cherry pick #2393 on 0.46 release (#2415)
* test: broke websocket acceptancetest CI task into smaller separate batches (#2382) (#2401) test: divided ws-server total acceptancetest into batches (#2382) Signed-off-by: Logan Nguyen <[email protected]> * feat: support deterministic proxy contract deployment transaction (#2287) (#2393) * feat: supported foundry deterministic deployment proxy contract transaction Signed-off-by: Logan Nguyen <[email protected]> * fix: removed Foundry reference Signed-off-by: Logan Nguyen <[email protected]> --------- Signed-off-by: Logan Nguyen <[email protected]> * pkg: bumped hedera-local to 2.23.0 Signed-off-by: Logan Nguyen <[email protected]> --------- Signed-off-by: Logan Nguyen <[email protected]>
1 parent 6108b5a commit 53b623f

24 files changed

+326
-155
lines changed

.github/workflows/acceptance-public.yml

Lines changed: 26 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -110,11 +110,31 @@ jobs:
110110
operator_id: ${{ inputs.operator_id }}
111111
operator_key: ${{ inputs.operator_key }}
112112

113-
websocket:
114-
name: Websocket
113+
websocket-batch-1:
114+
name: Websocket Batch 1
115115
uses: ./.github/workflows/acceptance-workflow.yml
116116
with:
117-
testfilter: ws
117+
testfilter: ws_batch1
118+
test_ws_server: true
119+
envfile: ${{ inputs.network }}Acceptance.env
120+
operator_id: ${{ inputs.operator_id }}
121+
operator_key: ${{ inputs.operator_key }}
122+
123+
websocket-batch-2:
124+
name: Websocket Batch 2
125+
uses: ./.github/workflows/acceptance-workflow.yml
126+
with:
127+
testfilter: ws_batch2
128+
test_ws_server: true
129+
envfile: ${{ inputs.network }}Acceptance.env
130+
operator_id: ${{ inputs.operator_id }}
131+
operator_key: ${{ inputs.operator_key }}
132+
133+
websocket-batch-3:
134+
name: Websocket Batch 3
135+
uses: ./.github/workflows/acceptance-workflow.yml
136+
with:
137+
testfilter: ws_batch3
118138
test_ws_server: true
119139
envfile: ${{ inputs.network }}Acceptance.env
120140
operator_id: ${{ inputs.operator_id }}
@@ -134,7 +154,9 @@ jobs:
134154
- tokenmanagement
135155
- htsprecompilev1
136156
- precompilecalls
137-
- websocket
157+
- websocket-batch-1
158+
- websocket-batch-2
159+
- websocket-batch-3
138160

139161
runs-on: ubuntu-latest
140162
steps:

.github/workflows/acceptance.yml

Lines changed: 20 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,25 @@ jobs:
7272
with:
7373
testfilter: precompile-calls
7474

75-
websocket:
76-
name: Websocket
75+
websocket-batch-1:
76+
name: Websocket Batch 1
7777
uses: ./.github/workflows/acceptance-workflow.yml
7878
with:
79-
testfilter: ws
79+
testfilter: ws_batch1
80+
test_ws_server: true
81+
82+
websocket-batch-2:
83+
name: Websocket Batch 2
84+
uses: ./.github/workflows/acceptance-workflow.yml
85+
with:
86+
testfilter: ws_batch2
87+
test_ws_server: true
88+
89+
websocket-batch-3:
90+
name: Websocket Batch 3
91+
uses: ./.github/workflows/acceptance-workflow.yml
92+
with:
93+
testfilter: ws_batch3
8094
test_ws_server: true
8195

8296
cacheservice:
@@ -99,7 +113,9 @@ jobs:
99113
- tokenmanagement
100114
- htsprecompilev1
101115
- precompilecalls
102-
- websocket
116+
- websocket-batch-1
117+
- websocket-batch-2
118+
- websocket-batch-3
103119
- cacheservice
104120

105121
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)