Skip to content

Commit

Permalink
Merge pull request #1438 from AntelopeIO/gh-1437-libtester-test-failures
Browse files Browse the repository at this point in the history
Test Fix: libtester test failures in CICD
  • Loading branch information
oschwaldp-oci authored Jul 21, 2023
2 parents 78c1b62 + be358ce commit 68334d5
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ jobs:
cpack
- name: Install dev package
run: |
apt update && apt upgrade -y
apt install -y ./build/leap_*.deb ./build/leap-dev*.deb
apt-get update && apt-get upgrade -y
apt-get install -y ./build/leap_*.deb ./build/leap-dev*.deb
- name: Test using TestHarness
run: |
python3 -c "from TestHarness import Cluster"
Expand Down Expand Up @@ -200,6 +200,11 @@ jobs:
runs-on: ["self-hosted", "enf-x86-midtier"]
container: ${{ matrix.test != 'deb-install' && fromJSON(needs.build-base.outputs.p)[matrix.platform].image || matrix.platform == 'ubuntu20' && 'ubuntu:focal' || 'ubuntu:jammy' }}
steps:
- name: Update Package Index & Upgrade Packages
run: |
apt-get update
apt-get upgrade -y
# LEAP
- if: ${{ matrix.test != 'deb-install' }}
name: Clone leap
Expand Down Expand Up @@ -236,7 +241,6 @@ jobs:
- if: ${{ matrix.test == 'deb-install' }}
name: Install leap-dev Package
run: |
apt-get update
export DEBIAN_FRONTEND='noninteractive'
export TZ='Etc/UTC'
apt-get install -y ./*.deb
Expand All @@ -255,7 +259,7 @@ jobs:
token: ${{github.token}}
- name: Install cdt Packages
run: |
apt install -y ./*.deb
apt-get install -y ./*.deb
rm ./*.deb
# Reference Contracts
Expand Down

0 comments on commit 68334d5

Please sign in to comment.