Added hub local #6
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: Run E2E tests | |
on: | |
push: | |
branches: | |
- itaylevyofficial/286-endtoendtests | |
release: | |
types: [ created ] | |
workflow_dispatch: | |
jobs: | |
end_to_end_test: | |
runs-on: [ "arm-linux" ] | |
env: | |
GOPRIVATE: "github.com/dymensionxyz/*" | |
GH_ACCESS_TOKEN: "${{ secrets.GH_ACCESS_TOKEN }}" | |
ROLLER_CONFIG_PATH: "~/tmp/e2e_roller_config" # Setting the environment variable | |
ROLLAPP_ID: "endtoend_1-${{ github.run_number }}" | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.19 | |
- run: git config --global url.https://[email protected]/.insteadOf https://github.com/ | |
- name: Init a local rollapp | |
run: | | |
rm -rf $ROLLER_CONFIG_PATH | |
go run . config init --home $ROLLER_CONFIG_PATH --da mock $ROLLAPP_ID RAX --hub local | |
- name: Fund the RollApp addresses | |
run: | | |
HUB_SEQ_ADDR=$(go run . keys list --output json | jq -r '.hub_sequencer') | |
echo "HUB_SEQ_ADDR=$HUB_SEQ_ADDR" >> $GITHUB_ENV | |
RELAYER_ROLLAPP_ADDR=$(go run . keys list --output json | jq -r '.relayer-rollapp-key') | |
/usr/local/bin/dymd tx bank multi-send local-user $HUB_SEQ_ADDR $RELAYER_ROLLAPP_ADDR 1udym --yes -b block --keyring-backend test --home $ROLLER_CONFIG_PATH/local-hub | |
- name: Register the rollapp | |
run: | | |
go run . register --home $ROLLER_CONFIG_PATH | |
- name: Run the rollapp | |
run: | | |
go run . run --home $ROLLER_CONFIG_PATH & | |
echo "ROLLAPP_PID=$!" >> $GITHUB_ENV | |
- name: Execute IBC relay tester | |
run: | | |
chmod +x ./scripts/ibc_relay_tester.sh | |
DEST_ADDR=$HUB_SEQ_ADDR ROLLAPP_ID=$ROLLAPP_ID ROLLER_CONFIG_PATH=$ROLLER_CONFIG_PATH ./scripts/ibc_relay_tester.sh | |
- name: Terminate the rollapp | |
run: | | |
kill $ROLLAPP_PID |