Skip to content
Open
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
8 changes: 7 additions & 1 deletion .github/workflows/sui-ccip-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@
sui_version: mainnet-v1.60.1
- test_name: Test_CCIP_EVM2Sui_ZeroReceiver
sui_version: mainnet-v1.60.1
- test_name: Test_CCIPTokenTransfer_Sui2EVM
sui_version: mainnet-v1.60.1
- test_name: Test_CCIPTokenTransfer_Sui2EVM_TPNotConfigured
sui_version: mainnet-v1.60.1
# - test_name: Test_CCIPTokenTransfer_EVM2SUI
sui_version: mainnet-v1.60.1

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

View workflow job for this annotation

GitHub Actions / Lint GH Actions and scripts

[actionlint] reported by reviewdog 🐶 key "sui_version" is duplicated in element in "include" section. previously defined at line:31,col:13. note that this key is case insensitive [syntax-check] Raw Output: .github/workflows/sui-ccip-test.yml:33:13: key "sui_version" is duplicated in element in "include" section. previously defined at line:31,col:13. note that this key is case insensitive [syntax-check]
- test_name: Test_CCIPTokenTransfer_Sui2EVM_BurnMintTokenPool
sui_version: mainnet-v1.60.1
- test_name: Test_CCIPTokenTransfer_Sui2EVM_ManagedTokenPool
Expand All @@ -47,7 +53,7 @@
# sui_version: mainnet-v1.57.2

env:
DEFAULT_CORE_REF: develop
DEFAULT_CORE_REF: test/nonevm-2581-token-not-configured
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_PAT_READ: ${{ secrets.GH_PAT_READ }}
GOPRIVATE: github.com/smartcontractkit/chainlink-sui
Expand Down Expand Up @@ -97,7 +103,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 106 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:106:9: shellcheck reported issue in this script: SC2236:style:3:6: Use -n instead of ! -z [shellcheck]

Check failure on line 106 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:106: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 @@ -115,7 +121,7 @@
# 2) Read Go version
- name: Read Go version
id: go-version
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: SC2086:info:2:30: 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: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 @@ -128,7 +134,7 @@

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

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