Skip to content
Draft
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
4 changes: 2 additions & 2 deletions .github/actions/setup-sui/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Setup Sui CLI
description: Install and cache Sui CLI using suiup
inputs:
version:
description: Sui CLI version to install (e.g., mainnet-v1.73.2)
description: Sui CLI version to install (e.g., mainnet-v1.74.1)
required: false
default: mainnet-v1.73.2
default: mainnet-v1.74.1

runs:
using: composite
Expand Down
52 changes: 26 additions & 26 deletions .github/workflows/sui-ccip-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,57 +20,57 @@
matrix:
include:
- test_name: Test_CCIP_Upgrade_Sui2EVM
sui_version: mainnet-v1.73.2
sui_version: mainnet-v1.74.1
- test_name: Test_CCIP_Upgrade_EVM2Sui
sui_version: mainnet-v1.73.2
sui_version: mainnet-v1.74.1
- test_name: Test_CCIP_Upgrade_CommonPkg_EVM2Sui
sui_version: mainnet-v1.73.2
sui_version: mainnet-v1.74.1
- test_name: Test_CCIP_Upgrade_NoBlock_EVM2Sui
sui_version: mainnet-v1.73.2
sui_version: mainnet-v1.74.1
- test_name: Test_CCIPTokenTransfer_Sui2EVM_LockReleaseTokenPool_Plain
sui_version: mainnet-v1.73.2
sui_version: mainnet-v1.74.1
- test_name: Test_CCIPTokenTransfer_Sui2EVM_LockReleaseTokenPool_Revert
sui_version: mainnet-v1.73.2
sui_version: mainnet-v1.74.1
- test_name: Test_CCIPTokenTransfer_Sui2EVM_BurnMintTokenPool_Plain
sui_version: mainnet-v1.73.2
sui_version: mainnet-v1.74.1
- test_name: Test_CCIPTokenTransfer_Sui2EVM_BurnMintTokenPool_WithRateLimit
sui_version: mainnet-v1.73.2
sui_version: mainnet-v1.74.1
- test_name: Test_CCIPTokenTransfer_Sui2EVM_BurnMintTokenPool_WithAllowlist_DenylistedSender
sui_version: mainnet-v1.73.2
sui_version: mainnet-v1.74.1
- test_name: Test_CCIPTokenTransfer_Sui2EVM_BurnMintTokenPool_WithAllowlist_AfterSignerAdded
sui_version: mainnet-v1.73.2
sui_version: mainnet-v1.74.1
- test_name: Test_CCIPTokenTransfer_Sui2EVM_BurnMintTokenPool_ThenGloballyCursedUncursed
sui_version: mainnet-v1.73.2
sui_version: mainnet-v1.74.1
- test_name: Test_CCIPTokenTransfer_Sui2EVM_ManagedTokenPool_ThenCurseUncurse
sui_version: mainnet-v1.73.2
sui_version: mainnet-v1.74.1
- test_name: Test_CCIPTokenTransfer_Sui2EVM_ManagedTokenPool_WithRateLimit
sui_version: mainnet-v1.73.2
sui_version: mainnet-v1.74.1
- test_name: Test_CCIPTokenTransfer_EVM2Sui_BurnMintTokenPool
sui_version: mainnet-v1.73.2
sui_version: mainnet-v1.74.1
- test_name: Test_CCIPTokenTransfer_EVM2Sui_ManagedTokenPool_NoRateLimit
sui_version: mainnet-v1.73.2
sui_version: mainnet-v1.74.1
- test_name: Test_CCIPTokenTransfer_EVM2Sui_ManagedTokenPool_WithRateLimit
sui_version: mainnet-v1.73.2
sui_version: mainnet-v1.74.1
- test_name: Test_CCIPPureTokenTransfer_EVM2Sui_BurnMintTokenPool
sui_version: mainnet-v1.73.2
sui_version: mainnet-v1.74.1
- test_name: Test_CCIPProgrammableTokenTransfer_EVM2Sui_BurnMintTokenPool
sui_version: mainnet-v1.73.2
sui_version: mainnet-v1.74.1
- test_name: Test_CCIPZeroGasLimitTokenTransfer_EVM2Sui_BurnMintTokenPool
sui_version: mainnet-v1.73.2
sui_version: mainnet-v1.74.1
- test_name: Test_CCIP_Messaging_Sui2EVM_Success
sui_version: mainnet-v1.73.2
sui_version: mainnet-v1.74.1
- test_name: Test_CCIP_Messaging_Sui2EVM_Revert_Part1
sui_version: mainnet-v1.73.2
sui_version: mainnet-v1.74.1
- test_name: Test_CCIP_Messaging_Sui2EVM_Revert_Part2
sui_version: mainnet-v1.73.2
sui_version: mainnet-v1.74.1
- test_name: Test_CCIP_Messaging_EVM2Sui_Success
sui_version: mainnet-v1.73.2
sui_version: mainnet-v1.74.1
- test_name: Test_CCIP_Messaging_EVM2Sui_Revert_Part1
sui_version: mainnet-v1.73.2
sui_version: mainnet-v1.74.1
- test_name: Test_CCIP_Messaging_EVM2Sui_Revert_Part2
sui_version: mainnet-v1.73.2
sui_version: mainnet-v1.74.1
- test_name: Test_CCIP_EVM2Sui_ZeroReceiver
sui_version: mainnet-v1.73.2
sui_version: mainnet-v1.74.1

env:
DEFAULT_CORE_REF: develop
Expand Down Expand Up @@ -121,7 +121,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 124 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:124:9: shellcheck reported issue in this script: SC2236:style:3:6: Use -n instead of ! -z [shellcheck]

Check failure on line 124 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:124: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 @@ -139,7 +139,7 @@
# 2) Read Go version
- name: Read Go version
id: go-version
run: |

Check failure on line 142 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:142: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 Down
Loading