Skip to content

Commit e436bd1

Browse files
committed
add trash
1 parent 9e3aee6 commit e436bd1

File tree

6 files changed

+73
-73
lines changed

6 files changed

+73
-73
lines changed

.github/workflows/compatibility_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
default: ''
1414
jobs:
1515
upload_data:
16-
uses: timeplus-io/proton/.github/workflows/run_command.yml@develop
16+
uses: timeplus-io/proton/.github/workflows/run_command.yml@bugfix/issue-881-try-fix-ci
1717
with:
1818
ec2-instance-type: ${{ vars.X64_INSTANCE_TYPE }}
1919
ec2-image-id: ${{ vars.X64_TEST_AMI }}
@@ -64,7 +64,7 @@ jobs:
6464

6565
compatibility_test:
6666
if: ${{ github.event.inputs.source!='' }}
67-
uses: timeplus-io/proton/.github/workflows/run_command.yml@develop
67+
uses: timeplus-io/proton/.github/workflows/run_command.yml@bugfix/issue-881-try-fix-ci
6868
with:
6969
ec2-instance-type: ${{ vars.X64_INSTANCE_TYPE }}
7070
ec2-image-id: ${{ vars.X64_TEST_AMI }}

.github/workflows/manual_trigger_build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ jobs:
119119
echo 'command: ${{ steps.set_command.outputs.command }}'
120120
build_x64:
121121
needs: prepare_sanitizer
122-
uses: timeplus-io/proton/.github/workflows/run_command.yml@develop
122+
uses: timeplus-io/proton/.github/workflows/run_command.yml@bugfix/issue-881-try-fix-ci
123123
if: github.event.inputs.arch == 'x64' && github.event.inputs.build_type != 'release'
124124
with:
125125
ec2-instance-type: ${{ vars.X64_INSTANCE_TYPE }}
@@ -141,7 +141,7 @@ jobs:
141141
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
142142
build_x64_release:
143143
needs: prepare_release
144-
uses: timeplus-io/proton/.github/workflows/run_command.yml@develop
144+
uses: timeplus-io/proton/.github/workflows/run_command.yml@bugfix/issue-881-try-fix-ci
145145
if: github.event.inputs.arch == 'x64' && github.event.inputs.build_type == 'release'
146146
with:
147147
ec2-instance-type: ${{ vars.X64_INSTANCE_TYPE }}
@@ -163,7 +163,7 @@ jobs:
163163
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
164164
build_arm:
165165
needs: prepare_sanitizer
166-
uses: timeplus-io/proton/.github/workflows/run_command.yml@develop
166+
uses: timeplus-io/proton/.github/workflows/run_command.yml@bugfix/issue-881-try-fix-ci
167167
if: github.event.inputs.arch == 'arm' && github.event.inputs.build_type != 'release'
168168
with:
169169
ec2-instance-type: ${{ vars.ARM_INSTANCE_TYPE }}
@@ -185,7 +185,7 @@ jobs:
185185
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
186186
build_arm_release:
187187
needs: prepare_release
188-
uses: timeplus-io/proton/.github/workflows/run_command.yml@develop
188+
uses: timeplus-io/proton/.github/workflows/run_command.yml@bugfix/issue-881-try-fix-ci
189189
if: github.event.inputs.arch == 'arm' && github.event.inputs.build_type == 'release'
190190
with:
191191
ec2-instance-type: ${{ vars.ARM_INSTANCE_TYPE }}

.github/workflows/manual_trigger_test.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090
echo 'command: ${{ steps.set_command.outputs.command }}'
9191
smoke_test_on_x64:
9292
needs: prepare_smoke_test
93-
uses: timeplus-io/proton/.github/workflows/run_command.yml@develop
93+
uses: timeplus-io/proton/.github/workflows/run_command.yml@bugfix/issue-881-try-fix-ci
9494
if: github.event.inputs.arch == 'x64'
9595
with:
9696
ec2-instance-type: ${{ vars.X64_INSTANCE_TYPE }}
@@ -115,7 +115,7 @@ jobs:
115115
TIMEPLUS_WORKSPACE2: ${{ secrets.TIMEPLUS_WORKSPACE2 }}
116116
smoke_test_on_arm:
117117
needs: prepare_smoke_test
118-
uses: timeplus-io/proton/.github/workflows/run_command.yml@develop
118+
uses: timeplus-io/proton/.github/workflows/run_command.yml@bugfix/issue-881-try-fix-ci
119119
if: github.event.inputs.arch == 'arm'
120120
with:
121121
ec2-instance-type: ${{ vars.ARM_INSTANCE_TYPE }}
@@ -191,7 +191,7 @@ jobs:
191191
echo 'command: ${{ steps.set_command.outputs.command }}'
192192
query_compability_test_on_x64:
193193
needs: prepare_query_compability_test
194-
uses: timeplus-io/proton/.github/workflows/run_command.yml@develop
194+
uses: timeplus-io/proton/.github/workflows/run_command.yml@bugfix/issue-881-try-fix-ci
195195
if: github.event.inputs.arch == 'x64'
196196
with:
197197
ec2-instance-type: ${{ vars.X64_TEST_ONLY_INSTANCE_TYPE_SMALL }}
@@ -218,7 +218,7 @@ jobs:
218218
TP_DEMO_SITE_API_KEY: ${{ secrets.TP_DEMO_SITE_API_KEY }}
219219
query_compability_on_arm:
220220
needs: prepare_query_compability_test
221-
uses: timeplus-io/proton/.github/workflows/run_command.yml@develop
221+
uses: timeplus-io/proton/.github/workflows/run_command.yml@bugfix/issue-881-try-fix-ci
222222
if: github.event.inputs.arch == 'arm'
223223
with:
224224
ec2-instance-type: ${{ vars.ARM_TEST_ONLY_INSTANCE_TYPE_SMALL }}
@@ -266,7 +266,7 @@ jobs:
266266
echo 'command: ${{ steps.set_command.outputs.command }}'
267267
unit_test_on_x64:
268268
needs: prepare_unit_test
269-
uses: timeplus-io/proton/.github/workflows/run_command.yml@develop
269+
uses: timeplus-io/proton/.github/workflows/run_command.yml@bugfix/issue-881-try-fix-ci
270270
if: github.event.inputs.arch == 'x64'
271271
with:
272272
ec2-instance-type: ${{ vars.X64_INSTANCE_TYPE }}
@@ -291,7 +291,7 @@ jobs:
291291
TIMEPLUS_WORKSPACE2: ${{ secrets.TIMEPLUS_WORKSPACE2 }}
292292
unit_test_on_arm:
293293
needs: prepare_unit_test
294-
uses: timeplus-io/proton/.github/workflows/run_command.yml@develop
294+
uses: timeplus-io/proton/.github/workflows/run_command.yml@bugfix/issue-881-try-fix-ci
295295
if: github.event.inputs.arch == 'arm'
296296
with:
297297
ec2-instance-type: ${{ vars.ARM_INSTANCE_TYPE }}
@@ -338,7 +338,7 @@ jobs:
338338
echo 'command: ${{ steps.set_command.outputs.command }}'
339339
stateless_test_on_x64:
340340
needs: prepare_stateless_test
341-
uses: timeplus-io/proton/.github/workflows/run_command.yml@develop
341+
uses: timeplus-io/proton/.github/workflows/run_command.yml@bugfix/issue-881-try-fix-ci
342342
if: github.event.inputs.arch == 'x64'
343343
with:
344344
ec2-instance-type: ${{ vars.X64_INSTANCE_TYPE }}
@@ -363,7 +363,7 @@ jobs:
363363
TIMEPLUS_WORKSPACE2: ${{ secrets.TIMEPLUS_WORKSPACE2 }}
364364
stateless_test_on_arm:
365365
needs: prepare_stateless_test
366-
uses: timeplus-io/proton/.github/workflows/run_command.yml@develop
366+
uses: timeplus-io/proton/.github/workflows/run_command.yml@bugfix/issue-881-try-fix-ci
367367
if: github.event.inputs.arch == 'arm'
368368
with:
369369
ec2-instance-type: ${{ vars.ARM_INSTANCE_TYPE }}
@@ -435,7 +435,7 @@ jobs:
435435
TIMEPLUS_WORKSPACE2: ${{ secrets.TIMEPLUS_WORKSPACE2 }}
436436
stateful_test_on_arm:
437437
needs: prepare_stateful_test
438-
uses: timeplus-io/proton/.github/workflows/run_command.yml@develop
438+
uses: timeplus-io/proton/.github/workflows/run_command.yml@bugfix/issue-881-try-fix-ci
439439
if: github.event.inputs.arch == 'arm'
440440
with:
441441
ec2-instance-type: ${{ vars.ARM_INSTANCE_TYPE }}

0 commit comments

Comments
 (0)