Skip to content

Commit

Permalink
apt-get update and apt-get upgrade to contract workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
elmato committed Aug 8, 2024
1 parent 2ebca8f commit 46604b2
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/contract.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,9 @@ jobs:
file: 'cdt_.*amd64.deb'

- name: Install CDT
run: sudo apt-get install -y --fix-missing ./cdt*.deb
run: |
sudo apt-get update && apt-get upgrade -y
sudo apt-get install -y ./cdt*.deb
- name: Build EOS EVM Contract
run: .github/workflows/build-contract.sh
Expand All @@ -74,7 +76,9 @@ jobs:
artifact-name: leap-dev-ubuntu22-amd64

- name: Install Leap
run: sudo apt-get install -y --fix-missing ./leap*.deb
run: |
sudo apt-get update && apt-get upgrade -y
sudo apt-get install -y ./leap*.deb
- name: Build EOS EVM Contract Tests
run: .github/workflows/build-contract-test.sh
Expand Down

0 comments on commit 46604b2

Please sign in to comment.