Skip to content

Commit 0b5c06b

Browse files
authored
Merge branch 'main' into fix-constant
2 parents f34ffc9 + 6fe3a48 commit 0b5c06b

File tree

996 files changed

+73155
-25585
lines changed

Some content is hidden

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

996 files changed

+73155
-25585
lines changed

.github/actionlint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
self-hosted-runner:
22
# Labels of self-hosted runners in array of string
33
labels:
4-
- runs-on,cpu=64,family=c7,hdd=500,image=aptos-ubuntu-x64,run-id=${{ github.run_id }}
4+
- runs-on,cpu=64,family=c7,disk=large,image=aptos-ubuntu-x64,run-id=${{ github.run_id }}

.github/actions/wait-images-ci/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ runs:
1515
using: composite
1616
steps:
1717
# Deps setup
18-
- uses: actions/setup-node@v3
18+
- uses: actions/setup-node@v4
1919
with:
2020
node-version-file: .node-version
2121
- uses: pnpm/action-setup@v4

.github/workflows/bump-release-version.yaml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,13 @@ jobs:
8585
core.setOutput("newVersion", newVersion);
8686
core.setOutput("releaseBranch", branch);
8787
core.setOutput("currentVersion", currentVersion);
88+
89+
- uses: dtolnay/rust-toolchain@stable
90+
91+
- name: Update Cargo.lock
92+
run: |
93+
cargo update -p aptos-node
94+
8895
- name: Create Pull Request
8996
id: create-pr
9097
uses: peter-evans/create-pull-request@v7
@@ -95,7 +102,7 @@ jobs:
95102
title: "[${{ steps.determine-version.outputs.releaseBranch }}] Bump version to ${{ steps.determine-version.outputs.newVersion }}"
96103
body: "This PR bumps the aptos-node version to ${{ steps.determine-version.outputs.newVersion }} in ${{ steps.determine-version.outputs.releaseBranch }}."
97104
commit-message: "[${{ steps.determine-version.outputs.releaseBranch }}] Bump version to ${{ steps.determine-version.outputs.newVersion }}"
98-
add-paths: "aptos-node/Cargo.toml"
105+
add-paths: "aptos-node/Cargo.toml, Cargo.lock"
99106
- name: Log PR URL
100107
if: ${{ steps.create-pr.outputs.pull-request-number }}
101108
run: |

.github/workflows/cli-e2e-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
# we ensure that the Aptos CLI works with all 3 prod networks, at least
2626
# based on the tests in the test suite.
2727
run-cli-tests:
28-
runs-on: runs-on,cpu=64,family=c7,hdd=500,image=aptos-ubuntu-x64,run-id=${{ github.run_id }}
28+
runs-on: runs-on,cpu=64,family=c7,disk=large,image=aptos-ubuntu-x64,run-id=${{ github.run_id }}
2929
permissions:
3030
contents: read
3131
id-token: write

.github/workflows/cli-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ jobs:
131131

132132
build-windows-binary:
133133
name: "Build Windows binary"
134-
runs-on: windows-latest
134+
runs-on: windows-2025
135135
steps:
136136
- uses: actions/checkout@v4
137137
with:

.github/workflows/copy-images-to-dockerhub.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ permissions:
3939
jobs:
4040
copy-images:
4141
# Run on a machine with more local storage for large docker images
42-
runs-on: runs-on,cpu=16,family=m6id,hdd=500,image=aptos-ubuntu-x64,run-id=${{ github.run_id }}
42+
runs-on: runs-on,cpu=16,family=m6id,disk=large,image=aptos-ubuntu-x64,run-id=${{ github.run_id }}
4343
steps:
4444
- uses: actions/checkout@v4
4545

@@ -58,7 +58,7 @@ jobs:
5858
username: ${{ secrets.ENV_DOCKERHUB_USERNAME }}
5959
password: ${{ secrets.ENV_DOCKERHUB_PASSWORD }}
6060

61-
- uses: actions/setup-node@v3
61+
- uses: actions/setup-node@v4
6262
with:
6363
node-version-file: .node-version
6464

.github/workflows/coverage-move-only.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ concurrency:
3030
jobs:
3131
rust-move-unit-coverage:
3232
timeout-minutes: 60
33-
runs-on: runs-on,cpu=64,family=c7,hdd=500,image=aptos-ubuntu-x64,run-id=${{ github.run_id }}
33+
runs-on: runs-on,cpu=64,family=c7,disk=large,image=aptos-ubuntu-x64,run-id=${{ github.run_id }}
3434
steps:
3535
- uses: actions/checkout@v4
3636
- uses: aptos-labs/aptos-core/.github/actions/rust-setup@main

.github/workflows/coverage.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
(github.event_name == 'schedule' && github.ref_name == 'main')
2828
# Note the tests run slowly due to instrutmentation. It takes CI 10 hrs
2929
timeout-minutes: 720
30-
runs-on: runs-on,cpu=64,family=c7,hdd=500,image=aptos-ubuntu-x64,run-id=${{ github.run_id }}
30+
runs-on: runs-on,cpu=64,family=c7,disk=large,image=aptos-ubuntu-x64,run-id=${{ github.run_id }}
3131
steps:
3232
- uses: actions/checkout@v4
3333
with:
@@ -57,7 +57,7 @@ jobs:
5757
contains(github.event.pull_request.labels.*.name, 'CICD:run-coverage') ||
5858
(github.event_name == 'schedule' && github.ref_name == 'main')
5959
timeout-minutes: 720 # incremented from 240 due to execution time limit hit in cron
60-
runs-on: runs-on,cpu=64,family=c7,hdd=500,image=aptos-ubuntu-x64,run-id=${{ github.run_id }}
60+
runs-on: runs-on,cpu=64,family=c7,disk=large,image=aptos-ubuntu-x64,run-id=${{ github.run_id }}
6161
steps:
6262
- uses: actions/checkout@v4
6363
with:

.github/workflows/docker-build-rosetta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ permissions:
1717

1818
jobs:
1919
build:
20-
runs-on: runs-on,cpu=64,family=c7,hdd=500,image=aptos-ubuntu-x64,run-id=${{ github.run_id }}
20+
runs-on: runs-on,cpu=64,family=c7,disk=large,image=aptos-ubuntu-x64,run-id=${{ github.run_id }}
2121
steps:
2222
- uses: actions/checkout@v4
2323

.github/workflows/execution-performance.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: "execution-performance"
22
on:
33
workflow_dispatch:
44
pull_request:
5-
types: [labeled, opened, synchronize, reopened, auto_merge_enabled]
5+
types: [ labeled, opened, synchronize, reopened, auto_merge_enabled ]
66
schedule:
77
- cron: "0 */4 * * *" # This runs every four hours
88

@@ -21,8 +21,8 @@ jobs:
2121
secrets: inherit
2222
with:
2323
GIT_SHA: ${{ github.event.pull_request.head.sha || github.sha }}
24-
RUNNER_NAME: executor-benchmark-runner
25-
# Run all tests only on the scheduled cadence, or explicitly requested
24+
RUNNER_NAME: benchmark-c3d-60
25+
# Run all tests only on the scheduled cadence, or explicitly requested
2626
FLOW: ${{ (github.event_name == 'schedule' || contains(github.event.pull_request.labels.*.name, 'CICD:run-execution-performance-full-test')) && 'CONTINUOUS' || 'LAND_BLOCKING' }}
2727
# Ignore target determination if on the scheduled cadence, or explicitly requested
2828
IGNORE_TARGET_DETERMINATION: ${{ github.event_name == 'schedule' || contains(github.event.pull_request.labels.*.name, 'CICD:run-execution-performance-test') || contains(github.event.pull_request.labels.*.name, 'CICD:run-execution-performance-full-test') }}

0 commit comments

Comments
 (0)