Skip to content

Commit ff8cf8e

Browse files
committed
trigger build
1 parent 0f0c387 commit ff8cf8e

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

.github/workflows/build.yml

+1-6
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ jobs:
3737
- uses: actions/checkout@v4
3838
with:
3939
fetch-depth: 0
40-
4140
- name: Extract Docker metadata
4241
id: meta
4342
uses: docker/metadata-action@v5
@@ -49,21 +48,17 @@ jobs:
4948
type=semver,pattern={{version}},value=v${{ inputs.tags }},enable=${{ inputs.tags != '' }}
5049
flavor: |
5150
latest=false
52-
5351
- name: Set up Docker Buildx
5452
uses: docker/setup-buildx-action@v3
55-
5653
- name: Log into registry ${{ env.REGISTRY }}
5754
if: ${{ github.event_name != 'pull_request' }}
5855
uses: docker/login-action@v3
5956
with:
6057
registry: ${{ env.REGISTRY }}
6158
username: ${{ github.actor }}
6259
password: ${{ secrets.GITHUB_TOKEN }}
63-
6460
- name: Setup Depot
6561
uses: depot/setup-action@v1
66-
6762
- name: Publish to GitHub Packages
6863
uses: depot/build-push-action@v1
6964
with:
@@ -72,4 +67,4 @@ jobs:
7267
push: ${{ github.event_name != 'pull_request' }}
7368
tags: ${{ steps.meta.outputs.tags }}
7469
cache-from: type=gha
75-
cache-to: type=gha,mode=max
70+
cache-to: type=gha,mode=max

internal/loadtest/runner.go

-2
Original file line numberDiff line numberDiff line change
@@ -347,10 +347,8 @@ func (r *Runner) Run(ctx context.Context) (inttypes.LoadTestResult, error) {
347347
time.Sleep(30 * time.Second)
348348

349349
collectorStartTime := time.Now()
350-
351350
r.collector.GroupSentTxs(ctx, r.sentTxs, r.clients, startTime)
352351
collectorResults := r.collector.ProcessResults(r.blockGasLimit, r.spec.NumOfBlocks)
353-
354352
collectorEndTime := time.Now()
355353
r.logger.Debug("collector running time",
356354
zap.Float64("duration_seconds", collectorEndTime.Sub(collectorStartTime).Seconds()))

0 commit comments

Comments
 (0)