Skip to content

Update submodule

Update submodule #55

Workflow file for this run

name: e2e
on:
push:
branches:
- main
pull_request:
env:
ANCHOR_VERSION: 0.30.1
NODE_VERSION: 20.11.0
RUSTC_VERSION: 1.75.0
SOLANA_VERSION: 1.18.15
jobs:
test:
name: bash sh/run_test.sh
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- uses: evan-gray/setup-anchor@c748c7e331768b0158e558152de4053e0fde5dc9
with:
node-version: ${{ env.NODE_VERSION }}
solana-cli-version: ${{ env.SOLANA_VERSION }}
anchor-version: ${{ env.ANCHOR_VERSION }}
- name: make node_modules
run: make node_modules
- name: cd evm && make build
run: make build
working-directory: ./evm
- name: cd evm/ts-sdk && npm run build
run: npm run build
working-directory: ./evm/ts-sdk
- name: cd solana && make anchor-test-setup
run: make anchor-test-setup
working-directory: ./solana
- name: cd solana && anchor build -- --features integration-test
run: anchor build -- --features integration-test
working-directory: ./solana
- name: Install toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ env.RUSTC_VERSION }}
- name: cd e2e && bash sh/run_test.sh
run: bash sh/run_test.sh
working-directory: ./e2e