Skip to content

Commit

Permalink
Move EOS EVM Contract step after cdt and leap steps.
Browse files Browse the repository at this point in the history
  • Loading branch information
oschwaldp-oci committed Aug 1, 2023
1 parent 10e2319 commit 162a96e
Showing 1 changed file with 25 additions and 25 deletions.
50 changes: 25 additions & 25 deletions .github/workflows/node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,31 +139,6 @@ jobs:
- name: Install CDT
run: apt-get install -y ./cdt*.deb

- name: Download EOS EVM Contract
uses: AntelopeIO/asset-artifact-download-action@v3
with:
owner: eosnetworkfoundation
repo: eos-evm
target: 'main'
file: 'contract.tar.gz'
artifact-name: contract.test-actions-off.tar.gz
token: ${{ secrets.GITHUB_TOKEN }}

- name: Extract EOS EVM Contract
id: evm-contract
run: |
pwd
ls
mkdir contract
mv contract.tar.gz contract/
cd contract
pwd
ls
tar xvf contract.tar.gz
cd build
pwd
echo "EVM_CONTRACT=$(pwd)" >> "$GITHUB_OUTPUT"
- name: Download leap-dev binary
uses: AntelopeIO/asset-artifact-download-action@v3
with:
Expand Down Expand Up @@ -193,6 +168,31 @@ jobs:
- name: Link Leap TestHarness Module (fix for v4 of leap)
run: ln -s /usr/share/leap_testing/tests/TestHarness /usr/lib/python3/dist-packages/TestHarness

- name: Download EOS EVM Contract
uses: AntelopeIO/asset-artifact-download-action@v3
with:
owner: eosnetworkfoundation
repo: eos-evm
target: 'main'
file: 'contract.tar.gz'
artifact-name: contract.test-actions-off.tar.gz
token: ${{ secrets.GITHUB_TOKEN }}

- name: Extract EOS EVM Contract
id: evm-contract
run: |
pwd
ls
mkdir contract
mv contract.tar.gz contract/
cd contract
pwd
ls
tar xvf contract.tar.gz
cd build
pwd
echo "EVM_CONTRACT=$(pwd)" >> "$GITHUB_OUTPUT"
- name: Authenticate
id: auth
uses: AntelopeIO/github-app-token-action@v1
Expand Down

0 comments on commit 162a96e

Please sign in to comment.