Multichain E2E Tests #160
Workflow file for this run
This file contains 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: Multichain E2E Tests | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
# $default-branch | |
- master | |
- 'release-*' | |
- 'dev-*' | |
tags: | |
- '@agoric/sdk@*' | |
jobs: | |
multichain-e2e: | |
runs-on: ubuntu-latest-16core | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
path: ./agoric-sdk | |
- uses: ./agoric-sdk/.github/actions/restore-node | |
with: | |
node-version: 18.x | |
path: ./agoric-sdk | |
- name: yarn link | |
run: | | |
yarn link-cli ~/bin/agoric | |
echo "/home/runner/bin" >> $GITHUB_PATH | |
working-directory: ./agoric-sdk | |
- name: Enable Corepack | |
run: corepack enable | |
working-directory: ./agoric-sdk/multichain-testing | |
- name: Install @agoric/multichain-testing deps | |
run: yarn install | |
working-directory: ./agoric-sdk/multichain-testing | |
- name: Lint @agoric/multichain-testing | |
run: yarn lint | |
working-directory: ./agoric-sdk/multichain-testing | |
- name: Setup Starship Infrastructure | |
id: starship-infra | |
uses: cosmology-tech/[email protected] | |
with: | |
# uses ghcr.io/agoric/agoric-sdk:dev image (latest master) | |
values: ./agoric-sdk/multichain-testing/config.yaml | |
port-forward: true | |
version: 0.2.2 | |
timeout: 30m | |
namespace: agoric-multichain | |
- name: Fund Provision Pool | |
run: | | |
kubectl config set-context --current --namespace=agoric-multichain | |
kubectl get pods | |
make fund-provision-pool | |
working-directory: ./agoric-sdk/multichain-testing | |
- name: Ensure ports are forwarded | |
run: | | |
curl --fail --retry 3 --retry-delay 10 http://localhost:26657/status || (echo "agoriclocal node is available") | |
curl --fail --retry 3 --retry-delay 10 http://localhost:8081/chains/agoriclocal || (echo "agoriclocal URL check failed") | |
curl --fail --retry 3 --retry-delay 10 http://localhost:8081/chains/osmosislocal || (echo "osmosislocal URL check failed") | |
curl --fail --retry 3 --retry-delay 10 http://localhost:8081/chains/gaialocal || (echo "gaialocal URL check failed") | |
- name: Override Chain Registry | |
run: make override-chain-registry | |
working-directory: ./agoric-sdk/multichain-testing | |
- name: Run @agoric/multichain-testing E2E Tests | |
run: yarn test | |
working-directory: ./agoric-sdk/multichain-testing |