Recent commits add functionality for function name to address resolving, using bfd library. This breaks the github action, used for trace-cruncher CI, as it does not have bfd development files. Updated the workflow with bfd development package. Signed-off-by: Tzvetomir Stoyanov (VMware) <tz.stoyanov@xxxxxxxxx> --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a9520e7..0d72bbf 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -17,7 +17,7 @@ jobs: shell: bash run: | sudo apt-get update - sudo apt-get install build-essential git cmake libjson-c-dev -y + sudo apt-get install build-essential git cmake libjson-c-dev binutils-dev -y sudo apt-get install libpython3-dev cython3 python3-numpy -y sudo apt install python3-pip sudo pip3 install --system pkgconfig GitPython -- 2.35.1