Skip to content

Commit

Permalink
Merge branch 'develop' into sc-platform/issue-3087-display-object-ext
Browse files Browse the repository at this point in the history
  • Loading branch information
valeriyr authored Nov 12, 2024
2 parents 5235500 + 209b8d1 commit 75765e7
Show file tree
Hide file tree
Showing 844 changed files with 16,907 additions and 55,335 deletions.
2 changes: 1 addition & 1 deletion .changeset/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"commit": false,
"fixed": [],
"linked": [],
"access": "restricted",
"access": "public",
"baseBranch": "develop",
"updateInternalDependencies": "minor",
"privatePackages": false,
Expand Down
4 changes: 2 additions & 2 deletions .config/nextest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ failure-output = "immediate"
status-level = "skip"
# Retry failing tests in order to not block builds on flaky tests
retries = 1
# Timeout tests after 4 minutes
slow-timeout = { period = "60s", terminate-after = 4 }
# Timeout tests after 5 minutes
slow-timeout = { period = "60s", terminate-after = 5 }

[profile.simtestnightly]
# Print out output for failing tests as soon as they fail, and also at the end
Expand Down
6 changes: 0 additions & 6 deletions .github/crates-filters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -180,9 +180,3 @@ iota-move-natives-latest:
- "iota-execution/latest/iota-move-natives/**"
iota-verifier-latest:
- "iota-execution/latest/iota-verifier/**"
iota-adapter-v0:
- "iota-execution/v0/iota-adapter/**"
iota-move-natives-v0:
- "iota-execution/v0/iota-move-natives/**"
iota-verifier-v0:
- "iota-execution/v0/iota-verifier/**"
11 changes: 11 additions & 0 deletions .github/workflows/_e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ on:
isExplorer:
type: boolean
required: true
isAppsBackend:
type: boolean
required: true
isTypescriptSDK:
type: boolean
required: true
Expand Down Expand Up @@ -74,6 +77,14 @@ jobs:
if: inputs.isGraphQlTransport || inputs.isRust || inputs.isDevelop
run: pnpm dlx concurrently --kill-others --success command-1 "$E2E_RUN_LOCAL_NET_CMD" 'pnpm --filter @iota/graphql-transport test:e2e'

- name: Build apps-backend
if: inputs.isAppsBackend || inputs.isDevelop
run: pnpm --filter apps-backend build

- name: Run apps-backend e2e tests
if: inputs.isAppsBackend || inputs.isDevelop
run: pnpm --filter apps-backend test:e2e

- name: Build explorer
if: inputs.isTypescriptSDK || inputs.isExplorer || inputs.isRust || inputs.isDevelop
run: pnpm turbo --filter=iota-explorer build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/apps_wallet_nightly_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
restore-keys: |
turbo-${{ runner.os }}-
- name: Build Wallet
run: pnpm wallet build
run: pnpm wallet build:nightly
- name: Upload artifacts
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # pin@v4
with:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/apps_wallet_prod_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ env:
DEFAULT_NETWORK: ${{ secrets.WALLET_PROD_DEFAULT_NETWORK }}
IOTA_NETWORKS: ${{ secrets.WALLET_PROD_IOTA_NETWORKS }}
APPS_BACKEND: ${{ secrets.WALLET_PROD_APPS_BACKEND }}
SENTRY_AUTH_TOKEN: ${{ secrets.TOOLING_SENTRY_AUTH_TOKEN }}

jobs:
wallet-prod-build:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/hierarchy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ jobs:
isRust: ${{ needs.diff.outputs.isRust == 'true' }}
isWallet: ${{ needs.diff.outputs.isWallet == 'true' }}
isExplorer: ${{ needs.diff.outputs.isExplorer == 'true' }}
isAppsBackend: ${{ needs.diff.outputs.isAppsBackend == 'true' }}
isTypescriptSDK: ${{ needs.diff.outputs.isTypescriptSDK == 'true' }}
isGraphQlTransport: ${{ needs.diff.outputs.isGraphQlTransport == 'true' }}
isDevelop: ${{ github.ref_name == 'develop' }}
Expand Down
Loading

0 comments on commit 75765e7

Please sign in to comment.