Skip to content

Commit

Permalink
BLOCK-2590 - Fix eosio install
Browse files Browse the repository at this point in the history
  • Loading branch information
igor-sikachyna committed Nov 14, 2024
1 parent fe91fb2 commit 123ff91
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,11 +118,8 @@ jobs:

- name: Extract eosio.contracts.tar.gz
run: |
ls -l
ls -l ./ultra/eosio.contracts
mkdir -p ./ultra/eosio.contracts/build
tar -xf ./ultra/eosio.contracts/eosio-contracts-*.tar.gz -C ./ultra/eosio.contracts/build
ls -l ./ultra/eosio.contracts/build
# Download latest eosio
- name: Download latest eosio
Expand All @@ -133,12 +130,13 @@ jobs:
# match eosio-***.deb
# don't match eosio-***-ubuntu20.deb
file: eosio-.*\.deb(?<!ubuntu20\.deb)$
target: "./ultra/eosio.deb"
token: '${{ steps.application_token.outputs.token }}'

# Install EOSIO Debian Image
- name: Install EOSIO Debian Image
run: dpkg -i ./ultra/eosio.deb
run: |
ls -l
dpkg -i ./eosio*.deb
- uses: actions/setup-node@v3
with:
Expand Down Expand Up @@ -171,6 +169,6 @@ jobs:
- name: Run eosio.contracts ultratests2
if: always() && !cancelled()
working-directory: ./
working-directory: ./ultratests
shell: bash
run: ultratest2 --contracts-dir-path=$ULTRA_PATH/eosio.contracts/build/contracts

0 comments on commit 123ff91

Please sign in to comment.