diff --git a/.github/workflows/node.yml b/.github/workflows/node.yml index 845169c..4d87712 100644 --- a/.github/workflows/node.yml +++ b/.github/workflows/node.yml @@ -244,15 +244,35 @@ jobs: - name: Test Leap Integration run: | + pwd + ls mkdir test_run_root + ls cd test_run_root + ls + pwd + echo "Shoule be in /__w/eos-evm-node/eos-evm-node/." + pushd .. + pwd + ls + echo "Shoule be in /__w/eos-evm-node/eos-evm-node/contract." + pushd contract pwd - echo "See if contract root still looks good." - ls ${{ steps.evm-contract.outputs.EVM_CONTRACT }} - echo "See if build root still looks good." - ls ${{ steps.evm-node-build.outputs.EVM_NODE_BUILD }} - echo "See if tx_wrapper still looks good." - ls ${{ steps.evm-node-build.outputs.EVM_NODE_TX_WRAPPER }} + ls + echo "Shoule be in /__w/eos-evm-node/eos-evm-node/contract/build." + pushd build + pwd + ls + echo "Shoule be in /__w/eos-evm-node/eos-evm-node/test_run_root" + popd + pwd + ls + echo "Shoule be in /__w/eos-evm-node/eos-evm-node/peripherals/trx_wrapper" + popd + pushd ../peripherals/tx_wrapper + pwd + ls + popd ./../tests/nodeos_eos_evm_test.py -v --eos-evm-contract-root ${{ steps.evm-contract.outputs.EVM_CONTRACT }} --eos-evm-build-root ${{ steps.evm-node-build.outputs.EVM_NODE_BUILD }} --use-tx-wrapper ${{ steps.evm-node-build.outputs.EVM_NODE_TX_WRAPPER }} - name: Prepare Logs