feat: solana chunked update client #1198
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: e2e-mock | |
on: | |
workflow_dispatch: | |
pull_request: | |
paths: | |
- '**.rs' | |
- '**.go' | |
- '**.toml' | |
- '**.lock' | |
- '**.mod' | |
- '**.sum' | |
- '**.sol' | |
- '.github/workflows/quick-e2e.yml' | |
- 'bun.lockb' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
env: | |
FOUNDRY_PROFILE: ci | |
ETH_TESTNET_TYPE: pow | |
SP1_PROVER: mock | |
E2E_PROOF_TYPE: groth16 | |
SOLANA_VERSION: "2.1.17" | |
ANCHOR_VERSION: "0.31.1" | |
permissions: | |
contents: read | |
jobs: | |
golangci: | |
name: lint | |
runs-on: depot-ubuntu-24.04-4 | |
steps: | |
- uses: actions/checkout@v5 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: 1.23 | |
cache-dependency-path: e2e/interchaintestv8/go.sum | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v8 | |
with: | |
version: v2.1 | |
working-directory: e2e/interchaintestv8 | |
generate-matrix: | |
runs-on: depot-ubuntu-24.04-4 | |
outputs: | |
matrix: ${{ steps.get-matrix.outputs.matrix }} | |
steps: | |
- uses: actions/checkout@v5 | |
- name: Generate Test Matrix | |
id: get-matrix | |
uses: ./.github/actions/e2e-matrix | |
with: | |
skip-tests: TestWithRelayerTestSuite/Test_2_ConcurrentRecvPacketToEth,TestWithRelayerTestSuite/Test_MultiPeriodClientUpdateToCosmos,TestWithRelayerTestSuite/Test_5_FinalizedTimeoutPacketFromEth,TestWithRelayerTestSuite/Test_UpdateClientToCosmos | |
e2e: | |
needs: generate-matrix | |
strategy: | |
fail-fast: false | |
matrix: ${{ fromJson(needs.generate-matrix.outputs.matrix) }} | |
name: ${{ matrix.entrypoint }}/${{ matrix.test }} | |
runs-on: depot-ubuntu-24.04-4 | |
steps: | |
- uses: actions/checkout@v5 | |
- name: Set up E2E environment | |
uses: ./.github/actions/e2e-setup | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Run Tests | |
env: | |
NETWORK_PRIVATE_KEY: ${{ secrets.SP1_PRIVATE_KEY }} | |
run: | | |
cd e2e/interchaintestv8 | |
go test -v -mod=readonly . -run "^${{ matrix.entrypoint }}$/${{ matrix.test }}$" -timeout 40m |