Skip to content

Commit

Permalink
Put install of eos-evm-miner after install of dependencies.
Browse files Browse the repository at this point in the history
Remove step to install tx-wrapper.
  • Loading branch information
oschwaldp-oci committed Aug 8, 2023
1 parent 5641f76 commit 9971541
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions .github/workflows/node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -306,14 +306,6 @@ jobs:
path: eos-evm-miner
ref: '${{needs.versions.outputs.eos-evm-miner-target}}'

- name: Build eos-evm-miner
id: eos-evm-miner-build
run: |
pushd eos-evm-miner
echo "EVM_MINER_ROOT=$(pwd)" >> "$GITHUB_OUTPUT"
npm install
popd
- name: Download EOS EVM Node builddir
uses: actions/download-artifact@v3
with:
Expand All @@ -339,7 +331,12 @@ jobs:
cp -r node-v18.17.0-linux-x64/{bin,include,lib,share} /usr/
node --version
npm --version
pushd ${{ steps.evm-node-build.outputs.EVM_NODE_BUILD }}/peripherals/tx_wrapper
- name: Build eos-evm-miner
id: eos-evm-miner-build
run: |
pushd eos-evm-miner
echo "EVM_MINER_ROOT=$(pwd)" >> "$GITHUB_OUTPUT"
npm install
popd
Expand Down

0 comments on commit 9971541

Please sign in to comment.