Skip to content

Commit 8db15d7

Browse files
committed
Squashed commit of the following:
commit 45df9e6 Author: Jonathan Oppenheimer <[email protected]> Date: Tue Jul 29 15:44:08 2025 -0400 chore: Update header year to 2025 (#4140) commit dca17fd Author: Stephen Buttolph <[email protected]> Date: Tue Jul 29 15:41:14 2025 -0400 Remove gitignore line that ignores the `database/dbtest` package (#4142) commit 6e56650 Author: aaronbuchwald <[email protected]> Date: Tue Jul 29 14:29:42 2025 -0400 Remove flaky dial throttler tests (#4139) commit 577820e Author: aaronbuchwald <[email protected]> Date: Tue Jul 29 13:25:27 2025 -0400 Add runner input to run c-chain reexecution benchmark on arbitrary target (#4121) Signed-off-by: aaronbuchwald <[email protected]> Co-authored-by: Copilot <[email protected]> commit d5cdc50 Author: Stephen Buttolph <[email protected]> Date: Tue Jul 29 13:24:13 2025 -0400 With golangci-lint v2.2.2 using http.NewRequest is discouraged (#4136) commit d9d6f59 Author: aaronbuchwald <[email protected]> Date: Tue Jul 29 11:49:26 2025 -0400 Remove external-data-json-path from benchmark push step (#4134) commit 0c62370 Author: aaronbuchwald <[email protected]> Date: Mon Jul 28 14:12:02 2025 -0400 Split action benchmark comparison and push to gh-pages (#4130) commit b1433fd Author: Geoff Stuart <[email protected]> Date: Fri Jul 25 14:50:16 2025 -0400 Enable Cubist Signer integration (#3965) Signed-off-by: Geoff Stuart <[email protected]> Signed-off-by: Joshua Kim <[email protected]> Co-authored-by: Richard Pringle <[email protected]> Co-authored-by: Joshua Kim <[email protected]> Co-authored-by: Stephen Buttolph <[email protected]> commit 44c79a8 Author: rodrigo <[email protected]> Date: Fri Jul 25 10:52:17 2025 -0400 refactor: remove load 1.0 (#4112) commit e658cf4 Author: jishudashu <[email protected]> Date: Fri Jul 25 22:50:43 2025 +0800 refactor: use maps.Copy for cleaner map handling (#4119) Signed-off-by: jishudashu <[email protected]> commit 0980edf Author: aaronbuchwald <[email protected]> Date: Thu Jul 24 16:13:30 2025 -0400 Update codeowners of reexecution changes (#4116) commit 44b1e6c Author: Sam Liokumovich <[email protected]> Date: Thu Jul 24 16:00:45 2025 -0400 Simplex QuorumCertificate and BLS aggregator (#4091) commit 5af69e6 Author: rodrigo <[email protected]> Date: Thu Jul 24 13:17:48 2025 -0400 ci: remove load 1.0 (#4106) commit 12b75d4 Author: aaronbuchwald <[email protected]> Date: Wed Jul 23 13:01:42 2025 -0400 Add step to push benchmark results to gh-pages (#4103) Signed-off-by: aaronbuchwald <[email protected]> commit c712437 Author: Sam Liokumovich <[email protected]> Date: Wed Jul 23 11:33:29 2025 -0400 Remove Stale References of the toEngine Channel (#4101) Signed-off-by: Joshua Kim <[email protected]>
1 parent 564a50d commit 8db15d7

File tree

1,607 files changed

+1611
-1719
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,607 files changed

+1611
-1719
lines changed

.github/workflows/c-chain-reexecution-benchmark.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@ on:
2020
description: 'The current state directory. Supports S3 directory/zip and local directories.'
2121
required: false
2222
default: s3://avalanchego-bootstrap-testing/cchain-current-state-hashdb-full-100.zip
23+
runner:
24+
description: 'Runner to execute the benchmark. Input to the runs-on field of the job.'
25+
required: false
26+
default: ubuntu-latest
27+
2328
schedule:
2429
- cron: '0 9 * * *' # Runs every day at 09:00 UTC (04:00 EST)
2530

@@ -28,7 +33,7 @@ jobs:
2833
permissions:
2934
id-token: write
3035
contents: write
31-
runs-on: ubuntu-latest
36+
runs-on: ${{ github.event.inputs.runner || 'ubuntu-latest' }}
3237
steps:
3338
- name: Configure AWS Credentials
3439
uses: aws-actions/configure-aws-credentials@v4
@@ -78,6 +83,5 @@ jobs:
7883
with:
7984
tool: 'go'
8085
output-file-path: ${{ github.workspace }}/reexecute-cchain-range-benchmark-res.txt
81-
external-data-json-path: ./cache/${{ runner.os }}-reexecute-cchain-range-benchmark.json
8286
github-token: ${{ secrets.GITHUB_TOKEN }}
8387
auto-push: true

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@ tmp/
2828

2929
*.pb*
3030

31-
db*
32-
3331
*cpu[0-9]*
3432
*mem[0-9]*
3533
*lock[0-9]*

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
BSD 3-Clause License
22

3-
Copyright (C) 2019-2024, Ava Labs, Inc.
3+
Copyright (C) 2019-2025, Ava Labs, Inc.
44
All rights reserved.
55

66
Redistribution and use in source and binary forms, with or without

api/admin/client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2019-2024, Ava Labs, Inc. All rights reserved.
1+
// Copyright (C) 2019-2025, Ava Labs, Inc. All rights reserved.
22
// See the file LICENSE for licensing terms.
33

44
package admin

api/admin/client_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2019-2024, Ava Labs, Inc. All rights reserved.
1+
// Copyright (C) 2019-2025, Ava Labs, Inc. All rights reserved.
22
// See the file LICENSE for licensing terms.
33

44
package admin

api/admin/key_value_reader.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2019-2024, Ava Labs, Inc. All rights reserved.
1+
// Copyright (C) 2019-2025, Ava Labs, Inc. All rights reserved.
22
// See the file LICENSE for licensing terms.
33

44
package admin

api/admin/service.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2019-2024, Ava Labs, Inc. All rights reserved.
1+
// Copyright (C) 2019-2025, Ava Labs, Inc. All rights reserved.
22
// See the file LICENSE for licensing terms.
33

44
package admin

api/admin/service_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2019-2024, Ava Labs, Inc. All rights reserved.
1+
// Copyright (C) 2019-2025, Ava Labs, Inc. All rights reserved.
22
// See the file LICENSE for licensing terms.
33

44
package admin

api/common_args_responses.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (C) 2019-2024, Ava Labs, Inc. All rights reserved.
1+
// Copyright (C) 2019-2025, Ava Labs, Inc. All rights reserved.
22
// See the file LICENSE for licensing terms.
33

44
package api

0 commit comments

Comments
 (0)