Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions .github/workflows/sui-ccip-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,18 @@
sui_version: mainnet-v1.57.2
- test_name: Test_CCIP_Messaging_EVM2Sui
sui_version: mainnet-v1.57.2
- test_name: Test_CCIP_EVM2Sui_ZeroReceiver
sui_version: mainnet-v1.57.2
- test_name: Test_CCIPTokenTransfer_Sui2EVM
sui_version: mainnet-v1.57.2
# temp disable due to flakiness
# - test_name: Test_CCIPTokenTransfer_EVM2SUI
# sui_version: mainnet-v1.57.2
# - test_name: Test_CCIPPureTokenTransfer_EVM2SUI
# sui_version: mainnet-v1.57.2
# - test_name: Test_CCIPProgrammableTokenTransfer_EVM2SUI
# sui_version: mainnet-v1.57.2
# - test_name: Test_CCIPZeroGasLimitTokenTransfer_EVM2SUI
# sui_version: mainnet-v1.57.2

env:
DEFAULT_CORE_REF: develop
Expand Down Expand Up @@ -64,7 +71,7 @@
# 1.5) Get core ref from PR body (optional override)
- name: Get core ref from PR body
if: github.event_name == 'pull_request'
run: |

Check failure on line 74 in .github/workflows/sui-ccip-test.yml

View workflow job for this annotation

GitHub Actions / Lint GH Actions and scripts

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2236:style:3:6: Use -n instead of ! -z [shellcheck] Raw Output: .github/workflows/sui-ccip-test.yml:74:9: shellcheck reported issue in this script: SC2236:style:3:6: Use -n instead of ! -z [shellcheck]

Check failure on line 74 in .github/workflows/sui-ccip-test.yml

View workflow job for this annotation

GitHub Actions / Lint GH Actions and scripts

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:2:17: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: .github/workflows/sui-ccip-test.yml:74:9: shellcheck reported issue in this script: SC2086:info:2:17: Double quote to prevent globbing and word splitting [shellcheck]
comment=$(gh pr view https://github.com/${{ github.repository }}/pull/${{ github.event.pull_request.number }} --json body -q '.body')
core_ref=$(echo $comment | grep -oP 'core ref: \K\S+' || true)
if [ ! -z "$core_ref" ]; then
Expand All @@ -82,7 +89,7 @@
# 2) Read Go version
- name: Read Go version
id: go-version
run: |

Check failure on line 92 in .github/workflows/sui-ccip-test.yml

View workflow job for this annotation

GitHub Actions / Lint GH Actions and scripts

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:2:30: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: .github/workflows/sui-ccip-test.yml:92:9: shellcheck reported issue in this script: SC2086:info:2:30: Double quote to prevent globbing and word splitting [shellcheck]
GO_VER=$(grep -E '^golang ' temp/chainlink/.tool-versions | cut -d' ' -f2)
echo "GO_VERSION=$GO_VER" >> $GITHUB_OUTPUT

Expand All @@ -95,7 +102,7 @@

# 4) Configure Git for private modules
- name: Configure Git & GOPRIVATE
run: |

Check failure on line 105 in .github/workflows/sui-ccip-test.yml

View workflow job for this annotation

GitHub Actions / Lint GH Actions and scripts

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:2:51: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: .github/workflows/sui-ccip-test.yml:105:9: shellcheck reported issue in this script: SC2086:info:2:51: Double quote to prevent globbing and word splitting [shellcheck]
git config --global url."https://${GH_PAT_READ}@github.com/".insteadOf "https://github.com/"
echo "GOPRIVATE=github.com/smartcontractkit/*" >> $GITHUB_ENV
env:
Expand Down Expand Up @@ -167,8 +174,8 @@
echo "=== Running ${{ matrix.test_name }} ==="
go test ./smoke/ccip \
-run "${{ matrix.test_name }}" \
-timeout 20m \
-parallel 4 \
-timeout 10m \
-parallel 1 \
-count=1 \
-v

Expand Down
2 changes: 1 addition & 1 deletion relayer/client/ptb_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ func NewPTBClient(
client := sui.NewSuiClientWithCustomClient(rpcUrl, httpClient)

if maxConcurrentRequests <= 0 {
maxConcurrentRequests = 100 // Default value
maxConcurrentRequests = 500 // Default value
}

return &PTBClient{
Expand Down
Loading