Skip to content

fixed env var echo bug #20

fixed env var echo bug

fixed env var echo bug #20

Workflow file for this run

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: "${{ github.workspace }}/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.10
- run: git config --global url.https://[email protected]/.insteadOf https://github.com/
- name: Init a local rollapp within screen
run: |
# Start a new detached screen session named "rollapp_init"
screen -dmS rollapp_init
# Send the commands to be executed in the screen session
screen -S rollapp_init -X stuff "rm -rf $ROLLER_CONFIG_PATH\n"
screen -S rollapp_init -X stuff "echo 'Executing: go run . config init --home $ROLLER_CONFIG_PATH --da mock $ROLLAPP_ID RAX --hub local --no-output'\n"
screen -S rollapp_init -X stuff "go run . config init --home $ROLLER_CONFIG_PATH --da mock $ROLLAPP_ID RAX --hub local --no-output\n"
# Wait a bit for the command to execute. Adjust this sleep time as necessary
sleep 10
# Kill the screen session after the command is done
screen -S rollapp_init -X quit
- name: Run the local hub
run: |
screen -dmS hub-session /usr/local/bin/dymd start --home "$ROLLER_CONFIG_PATH/local-hub"
sleep 5
HUB_PID=$(pgrep -f 'dymd start --home')
echo "HUB_PID=$HUB_PID" >> $GITHUB_ENV
- 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-hub-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 --node http://127.0.0.1:36657
- name: Register the rollapp
run: |
go run . register --home $ROLLER_CONFIG_PATH --no-output
- 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
- name: Terminate the hub
run: |
kill $HUB_PID