-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into aluon/push-qoyzlsxrzxpp
- Loading branch information
Showing
624 changed files
with
32,262 additions
and
16,426 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# This workflow runs a public fullnode using the `main` branch, | ||
# connects the public fullnode to `devnet` and synchronizes the | ||
# node using fast syncing to verify that nothing has been broken. | ||
|
||
name: "fullnode-fast-devnet-main" | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "0 2 * * *" # Once a day, at 02:00 (UTC) | ||
|
||
permissions: | ||
contents: read | ||
id-token: write | ||
actions: write #required for workflow cancellation via check-aptos-core | ||
|
||
jobs: | ||
check-repo: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: aptos-labs/aptos-core/.github/actions/check-aptos-core@main | ||
with: | ||
cancel-workflow: ${{ github.event_name == 'schedule' }} # Cancel the workflow if it is scheduled on a fork | ||
|
||
fullnode-fast-devnet-main: | ||
needs: check-repo | ||
uses: ./.github/workflows/run-fullnode-sync.yaml | ||
secrets: inherit | ||
with: | ||
TEST_NAME: fullnode-fast-devnet-main | ||
GIT_REF: main | ||
NETWORK: devnet | ||
BOOTSTRAPPING_MODE: DownloadLatestStates | ||
CONTINUOUS_SYNCING_MODE: ExecuteTransactions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# This workflow runs a public fullnode using the `devnet` branch, | ||
# connects the public fullnode to `devnet` and synchronizes the | ||
# node using fast syncing to verify that nothing has been broken. | ||
|
||
name: "fullnode-fast-devnet-stable" | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "30 2 */3 * *" # Once every three days, at 02:30 (UTC) | ||
|
||
permissions: | ||
contents: read | ||
id-token: write | ||
actions: write #required for workflow cancellation via check-aptos-core | ||
|
||
jobs: | ||
check-repo: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: aptos-labs/aptos-core/.github/actions/check-aptos-core@main | ||
with: | ||
cancel-workflow: ${{ github.event_name == 'schedule' }} # Cancel the workflow if it is scheduled on a fork | ||
|
||
fullnode-fast-devnet-stable: | ||
needs: check-repo | ||
uses: ./.github/workflows/run-fullnode-sync.yaml | ||
secrets: inherit | ||
with: | ||
TEST_NAME: fullnode-fast-devnet-stable | ||
GIT_REF: devnet | ||
NETWORK: devnet | ||
BOOTSTRAPPING_MODE: DownloadLatestStates | ||
CONTINUOUS_SYNCING_MODE: ExecuteTransactions |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: Trigger Validation Tests on Release Branch Cut | ||
|
||
on: | ||
create: | ||
|
||
jobs: | ||
check-branch-prefix: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
branch_matches: ${{ steps.check-prefix.outputs.branch_matches }} | ||
steps: | ||
- name: Check if the branch starts with 'aptos-release' | ||
id: check-prefix | ||
run: | | ||
if [[ "${{ github.ref }}" == refs/heads/aptos-release-* ]]; then | ||
echo "branch_matches=true" >> $GITHUB_OUTPUT | ||
else | ||
echo "branch_matches=false" >> $GITHUB_OUTPUT | ||
fi | ||
trigger-forge-stable: | ||
needs: check-branch-prefix | ||
if: needs.check-branch-prefix.outputs.branch_matches == 'true' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Trigger Forge Stable Workflow' | ||
uses: actions/github-script@v7 | ||
with: | ||
script: | | ||
await github.rest.actions.createWorkflowDispatch({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
workflow_id: 'forge-stable.yaml', | ||
ref: context.ref, | ||
}); | ||
console.log('Triggered Forge Stable Workflow on %s', context.ref); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.