Skip to content

Commit

Permalink
Solana: re-enable disabled test with updated version (#14892)
Browse files Browse the repository at this point in the history
* Revert "Unblock core CI by removing Solana setup (#14878)"

This reverts commit f3e66b2.

* update solana validator
  • Loading branch information
aalu1418 authored Oct 22, 2024
1 parent 1636059 commit fbbda5e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,9 +150,9 @@ jobs:
if: ${{ needs.filter.outputs.changes == 'true' && inputs.evm-ref != ''}}
shell: bash
run: go get github.com/smartcontractkit/chainlink-integrations/evm/relayer@${{ inputs.evm-ref }}
# - name: Setup Solana
# if: ${{ needs.filter.outputs.changes == 'true' }}
# uses: ./.github/actions/setup-solana
- name: Setup Solana
if: ${{ needs.filter.outputs.changes == 'true' }}
uses: ./.github/actions/setup-solana
- name: Setup wasmd
if: ${{ needs.filter.outputs.changes == 'true' }}
uses: ./.github/actions/setup-wasmd
Expand Down
2 changes: 1 addition & 1 deletion core/cmd/solana_transaction_commands_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ import (
"github.com/smartcontractkit/chainlink/v2/core/cmd"
)

// TODO: move this test to `chainlink-solana` https://smartcontract-it.atlassian.net/browse/NONEVM-790
func TestShell_SolanaSendSol(t *testing.T) {
t.Skip("solana setup broken due to expired ssl")
ctx := testutils.Context(t)
chainID := "localnet"
url := solanaClient.SetupLocalSolNode(t)
Expand Down
6 changes: 3 additions & 3 deletions tools/ci/install_solana
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#!/usr/bin/env bash

set -euo pipefail
VERSION=v1.17.28
SHASUM=97faa4d14becfccd3bc539dbc0aaf28c84cfe9d80d299ec70092fb5844403724
VERSION=v1.18.26
SHASUM=cec72cde1cf36eb35cd8326245d23af0b6791fab68337c2953e2ca2a40af2c50

echo "Installing solana@${VERSION}"
curl -sSfL https://release.solana.com/$VERSION/install --output install_solana.sh \
curl -sSfL https://release.anza.xyz/$VERSION/install --output install_solana.sh \
&& echo "Checking shasum of Solana install script." \
&& echo "${SHASUM} install_solana.sh" | sha256sum --check
chmod +x install_solana.sh
Expand Down

0 comments on commit fbbda5e

Please sign in to comment.