Skip to content

Commit

Permalink
Merge branch 'MystenLabs:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
retwn authored Jul 25, 2024
2 parents 9f98b5a + c7de614 commit 9891b08
Show file tree
Hide file tree
Showing 16,438 changed files with 1,061,497 additions and 611,196 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
29 changes: 29 additions & 0 deletions .cargo/config
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,34 @@ xclippy = [
xlint = "run --package x --bin x -- lint"
xtest = "run --package x --bin x -- external-crates-tests"

# Configuration specifically for running clippy on `external-crates/move/`.
# Some of these allows are to avoid code churn; others are filed as issues on the `sui` repo now.
move-clippy = [
"clippy",
"--all-targets",
"--",
"-Wclippy::all",
"-Wclippy::disallowed_methods",
"-Aclippy::upper_case_acronyms",
"-Aclippy::type_complexity",
"-Aclippy::new_without_default",
]

mysql-clippy = [
"clippy",
"--all-targets",
"--package",
"sui-indexer",
"--features",
"mysql-feature",
"--no-default-features",
"--",
"-Wclippy::all",
"-Wclippy::disallowed_methods",
"-Aclippy::upper_case_acronyms",
"-Aclippy::type_complexity",
"-Aclippy::new_without_default",
]

[build]
rustflags = ["-C", "force-frame-pointers=yes", "-C", "force-unwind-tables=yes"]
41 changes: 23 additions & 18 deletions .changeset/config.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,25 @@
{
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
"changelog": "@changesets/cli/changelog",
"commit": false,
"fixed": [],
"linked": [],
"access": "public",
"baseBranch": "main",
"updateInternalDependencies": "minor",
"privatePackages": false,
"ignore": [
"sui-wallet",
"sui-explorer",
"@mysten/core",
"@mysten/ui",
"sui-wallet-adapter-demo",
"wallet-kit-site",
"sponsored-transactions"
]
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
"changelog": "@changesets/cli/changelog",
"commit": false,
"fixed": [],
"linked": [],
"access": "public",
"baseBranch": "main",
"updateInternalDependencies": "minor",
"privatePackages": false,
"ignore": [
"sui-wallet",
"@mysten/core",
"sponsored-transactions",
"kiosk-demo",
"kiosk-cli",
"@mysten/sdk-docs",
"mev-bot",
"escrow-api-demo",
"trading-frontend-demo"
],
"___experimentalUnsafeOptions_WILL_CHANGE_IN_PATCH": {
"onlyUpdatePeerDependentsWhenOutOfRange": true
}
}
5 changes: 0 additions & 5 deletions .changeset/cyan-pumas-smell.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/dirty-trainers-thank.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/late-toes-decide.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/lovely-clocks-visit.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/lovely-plums-live.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/rich-peaches-complain.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/short-pugs-obey.md

This file was deleted.

11 changes: 0 additions & 11 deletions .changeset/slow-foxes-live.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/spotty-sloths-sniff.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/wild-apples-itch.md

This file was deleted.

38 changes: 0 additions & 38 deletions .config/hakari.toml

This file was deleted.

12 changes: 6 additions & 6 deletions .config/nextest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,19 @@ status-level = "skip"
fail-fast = false
# Do not retry failing tests
retries = 0
# Mark tests as slow after 4 hours, kill them right after
slow-timeout = { period = "4h", terminate-after = 1 }
# Mark tests as slow after 7 hours, kill them right after
slow-timeout = { period = "7h", terminate-after = 1 }

[profile.simtestnightly]
# Print out output for failing tests as soon as they fail, and also at the end
# of the run (for easy scrollability).
failure-output = "immediate-final"
failure-output = "immediate"
# Show skipped tests in the CI output.
status-level = "skip"
status-level = "fail"
# Do not cancel the test run on the first failure.
fail-fast = false
# Mark tests as slow after 20m, terminate after 1h
slow-timeout = { period = "20m", terminate-after = 3 }
# Mark tests as slow after 30m, terminate after 1.5h
slow-timeout = { period = "30m", terminate-after = 3 }

[profile.ci.junit]
path = "junit.xml"
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ target/
*.md
build/
storage/
docker/
Loading

0 comments on commit 9891b08

Please sign in to comment.