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.
Merge branch 'mainnet' of github.com:MystenLabs/sui into mainnet
- Loading branch information
Showing
914 changed files
with
59,447 additions
and
21,106 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@mysten/sui': patch | ||
--- | ||
|
||
Mark subscription methods as deprecated. |
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,17 @@ | ||
--- | ||
'@mysten/ledgerjs-hw-app-sui': patch | ||
'@mysten/graphql-transport': patch | ||
'@mysten/wallet-standard': patch | ||
'@mysten/suins-toolkit': patch | ||
'@mysten/create-dapp': patch | ||
'@mysten/sui': patch | ||
'@mysten/dapp-kit': patch | ||
'@mysten/deepbook': patch | ||
'@mysten/zklogin': patch | ||
'@mysten/zksend': patch | ||
'@mysten/enoki': patch | ||
'@mysten/kiosk': patch | ||
'@mysten/bcs': patch | ||
--- | ||
|
||
Update dependencies |
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 |
---|---|---|
|
@@ -13,6 +13,9 @@ runs: | |
- uses: pnpm/action-setup@a3252b78c470c02df07e9d59298aecedc3ccdd6d # [email protected] | ||
with: | ||
version: 9.1.1 | ||
- name: Install dependencies | ||
run: pnpm install --frozen-lockfile | ||
shell: bash | ||
- id: changes | ||
name: Detect changes | ||
shell: bash | ||
|
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 |
---|---|---|
|
@@ -43,26 +43,28 @@ jobs: | |
- 5432:5432 | ||
steps: | ||
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # Pin v4.1.1 | ||
# Disabled for now as it makes test runs take longer | ||
# - uses: bmwill/rust-cache@v1 # Fork of 'Swatinem/rust-cache' which allows caching additional paths | ||
- uses: Swatinem/rust-cache@v2 | ||
with: | ||
cache-all-crates: true | ||
cache-on-failure: true | ||
- uses: pnpm/action-setup@a3252b78c470c02df07e9d59298aecedc3ccdd6d # [email protected] | ||
with: | ||
version: 9.1.1 | ||
- run: cargo build --bin sui-test-validator --bin sui --profile dev | ||
- run: cargo build --bin sui --features indexer --profile dev | ||
- name: Install Nodejs | ||
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # [email protected] | ||
with: | ||
node-version: '18' | ||
cache: 'pnpm' | ||
- name: Install dependencies | ||
run: pnpm install --frozen-lockfile | ||
- name: Install Playwright Browsers | ||
run: pnpm --filter sui-wallet playwright install --with-deps chromium | ||
# - name: Install Playwright Browsers | ||
# run: pnpm --filter sui-wallet playwright install --with-deps chromium | ||
|
||
- name: Set env | ||
run: | | ||
echo "VITE_SUI_BIN=$PWD/target/debug/sui" >> $GITHUB_ENV | ||
echo "E2E_RUN_LOCAL_NET_CMD=(RUST_LOG=warn RUST_BACKTRACE=1 $(echo $PWD/target/debug/sui-test-validator) --with-indexer --pg-port 5432 --pg-db-name sui_indexer_v2 --graphql-host 127.0.0.1 --graphql-port 9125)" >> $GITHUB_ENV | ||
echo "E2E_RUN_LOCAL_NET_CMD=(RUST_LOG=warn RUST_BACKTRACE=1 $(echo $PWD/target/debug/sui) start --with-faucet --force-regenesis --with-indexer --pg-port 5432 --pg-db-name sui_indexer_v2 --with-graphql)" >> $GITHUB_ENV | ||
- name: Run TS SDK e2e tests | ||
if: ${{ needs.diff.outputs.isTypescriptSDK == 'true' || needs.diff.outputs.isRust == 'true'}} | ||
|
@@ -72,29 +74,28 @@ jobs: | |
if: ${{ needs.diff.outputs.isGraphQlTransport == 'true' || needs.diff.outputs.isRust == 'true'}} | ||
run: pnpm dlx concurrently --kill-others --success command-1 "$E2E_RUN_LOCAL_NET_CMD" 'pnpm --filter @mysten/graphql-transport test:e2e' | ||
|
||
- name: Run Local net | ||
run: cargo run --bin sui-test-validator -- --epoch-duration-ms 10000 & | ||
- name: Set Wallet env | ||
run: echo "API_ENV=local" > "$PWD/apps/wallet/configs/environment/.env" | ||
- name: Build Wallet | ||
# need to run Wallet e2e when its upstream(TS SDK and Rust) or itself is changed | ||
if: ${{ needs.diff.outputs.isWallet == 'true' || needs.diff.outputs.isRust == 'true' || needs.diff.outputs.isTypescriptSDK == 'true'}} | ||
run: pnpm wallet build | ||
- name: Run Wallet e2e tests | ||
if: ${{ needs.diff.outputs.isWallet == 'true' || needs.diff.outputs.isRust == 'true' || needs.diff.outputs.isTypescriptSDK == 'true'}} | ||
run: xvfb-run --auto-servernum --server-args="-screen 0 1280x960x24" -- pnpm --filter sui-wallet playwright test | ||
- uses: actions/upload-artifact@v3 | ||
if: always() | ||
with: | ||
name: playwright-report-wallet | ||
path: apps/wallet/playwright-report/ | ||
retention-days: 30 | ||
# - name: Run Local net | ||
# run: cargo run --bin sui -- start --with-faucet --force-regenesis --epoch-duration-ms 10000 & | ||
# - name: Set Wallet env | ||
# run: echo "API_ENV=local" > "$PWD/apps/wallet/configs/environment/.env" | ||
# - name: Build Wallet | ||
# # need to run Wallet e2e when its upstream(TS SDK and Rust) or itself is changed | ||
# if: ${{ needs.diff.outputs.isWallet == 'true' || needs.diff.outputs.isRust == 'true' || needs.diff.outputs.isTypescriptSDK == 'true'}} | ||
# run: pnpm wallet build | ||
# - name: Run Wallet e2e tests | ||
# if: ${{ needs.diff.outputs.isWallet == 'true' || needs.diff.outputs.isRust == 'true' || needs.diff.outputs.isTypescriptSDK == 'true'}} | ||
# run: xvfb-run --auto-servernum --server-args="-screen 0 1280x960x24" -- pnpm --filter sui-wallet playwright test | ||
# - uses: actions/upload-artifact@v3 | ||
# if: always() | ||
# with: | ||
# name: playwright-report-wallet | ||
# path: apps/wallet/playwright-report/ | ||
# retention-days: 30 | ||
|
||
# Run e2e test against localnet built on the devnet branch for backward compatibility check | ||
local_devnet_branch: | ||
name: Local Network Built on devnet branch | ||
needs: diff | ||
# TODO: add wallet e2e to the `if` condition when available | ||
if: needs.diff.outputs.isTypescriptSDK == 'true' | ||
runs-on: ubuntu-ghcloud | ||
services: | ||
|
@@ -123,7 +124,6 @@ jobs: | |
local_testnet_branch: | ||
name: Local Network Built on testnet branch | ||
needs: diff | ||
# TODO: add wallet e2e to the `if` condition when available | ||
if: needs.diff.outputs.isTypescriptSDK == 'true' | ||
runs-on: ubuntu-ghcloud | ||
services: | ||
|
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 |
---|---|---|
@@ -1,25 +1,10 @@ | ||
name: GitHub Issues and External PRs Monitor | ||
name: GitHub Issues Monitor | ||
|
||
on: | ||
issues: | ||
types: [opened] | ||
pull_request_target: | ||
types: [opened] | ||
|
||
jobs: | ||
notify-prs: | ||
name: Dispatch workflow to notify slack channel on PRs | ||
if: github.event_name == 'pull_request' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Dispatch github-issues-external-prs-monitor in MystenLabs/sui-operations | ||
uses: peter-evans/repository-dispatch@ff45666b9427631e3450c54a1bcbee4d9ff4d7c0 # [email protected] | ||
with: | ||
repository: MystenLabs/sui-operations | ||
token: ${{ secrets.DOCKER_BINARY_BUILDS_DISPATCH }} | ||
event-type: github-issues-external-prs-monitor | ||
client-payload: '{"author": "${{github.event.pull_request.user.login}}", "event_name": "pull_request", "pull_request_number": "${{github.event.pull_request.number}}"}' | ||
|
||
notify-issues: | ||
name: Dispatch workflow to notify slack channel on issues | ||
if: github.event_name == 'issues' | ||
|
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 |
---|---|---|
|
@@ -12,3 +12,17 @@ jobs: | |
- uses: actions/labeler@9fd24f1f9d6ceb64ba34d181b329ee72f99978a0 | ||
with: | ||
repo-token: "${{ secrets.GITHUB_TOKEN }}" | ||
|
||
notify-prs: | ||
name: Dispatch workflow to notify slack channel on PRs | ||
runs-on: ubuntu-latest | ||
if: ${{ github.event.action == 'opened' }} | ||
steps: | ||
- name: Dispatch github-issues-external-prs-monitor in MystenLabs/sui-operations | ||
uses: peter-evans/repository-dispatch@ff45666b9427631e3450c54a1bcbee4d9ff4d7c0 # [email protected] | ||
with: | ||
repository: MystenLabs/sui-operations | ||
token: ${{ secrets.DOCKER_BINARY_BUILDS_DISPATCH }} | ||
event-type: github-issues-external-prs-monitor | ||
client-payload: '{"author": "${{github.event.pull_request.user.login}}", "event_name": "pull_request", "pull_request_number": "${{github.event.pull_request.number}}"}' | ||
|
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.