Skip to content

Commit

Permalink
Try some relative paths to debug cicd.
Browse files Browse the repository at this point in the history
  • Loading branch information
oschwaldp-oci committed Jul 31, 2023
1 parent 135c31a commit 574cf3b
Showing 1 changed file with 26 additions and 6 deletions.
32 changes: 26 additions & 6 deletions .github/workflows/node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 574cf3b

Please sign in to comment.