forked from MystenLabs/sui
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
commit bd541c4 Author: Carlos Baez <[email protected]> Date: Thu Oct 24 16:36:23 2024 +0200 update wit for version 1.36.1
- Loading branch information
Carlos Baez
committed
Oct 24, 2024
1 parent
950cf96
commit af58ec8
Showing
1,492 changed files
with
72,851 additions
and
33,730 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
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,53 @@ | ||
name: Split Cluster Check | ||
on: | ||
push: | ||
branches: | ||
- main | ||
jobs: | ||
validate-mainnet: | ||
runs-on: ubuntu-ghcloud | ||
steps: | ||
- name: checkout code repository | ||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # Pin v4.1.1 | ||
with: | ||
fetch-depth: 0 | ||
- name: Run split cluster check script | ||
id: mn-split-cluster-check | ||
continue-on-error: true # if failure, continue to bisect | ||
run: | | ||
SUI_PROTOCOL_CONFIG_CHAIN_OVERRIDE=mainnet \ | ||
scripts/compatibility/split-cluster-check.sh origin/mainnet ${{ github.sha }} | ||
- name: Bisect | ||
if: steps.mn-split-cluster-check.outcome == 'failure' && github.event_name == 'push' | ||
run: | | ||
git bisect start ${{ github.event.pull_request.head.sha }} origin/mainnet | ||
SUI_PROTOCOL_CONFIG_CHAIN_OVERRIDE=mainnet \ | ||
git bisect run scripts/split-cluster-check.sh origin/mainnet ${{ github.sha }} | ||
git bisect reset | ||
- name: Mark Failures | ||
if: failure() | ||
run: exit 1 | ||
|
||
validate-testnet: | ||
runs-on: ubuntu-ghcloud | ||
steps: | ||
- name: checkout code repository | ||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # Pin v4.1.1 | ||
with: | ||
fetch-depth: 0 | ||
- name: Run split cluster check script | ||
id: tn-split-cluster-check | ||
continue-on-error: true # if failure, continue to bisect | ||
run: | | ||
SUI_PROTOCOL_CONFIG_CHAIN_OVERRIDE=testnet \ | ||
scripts/compatibility/split-cluster-check.sh origin/testnet ${{ github.sha }} | ||
- name: Bisect | ||
if: steps.tn-split-cluster-check.outcome == 'failure' && github.event_name == 'push' | ||
run: | | ||
git bisect start ${{ github.event.pull_request.head.sha }} origin/testnet | ||
SUI_PROTOCOL_CONFIG_CHAIN_OVERRIDE=testnet \ | ||
git bisect run scripts/split-cluster-check.sh origin/testnet ${{ github.sha }} | ||
git bisect reset | ||
- name: Mark Failures | ||
if: failure() | ||
run: exit 1 |
Oops, something went wrong.