Fix the part of the script that installs the third party libraries. Signed-off-by: Yordan Karadzhov (VMware) <y.karadz@xxxxxxxxx> --- .github/workflows/main.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e818f46..a35f003 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -16,6 +16,7 @@ jobs: - name: Install Dependencies shell: bash run: | + sudo apt-get update sudo apt-get install build-essential git cmake libjson-c-dev -y sudo apt-get install freeglut3-dev libxmu-dev libxi-dev -y sudo apt-get install qtbase5-dev libboost-all-dev -y @@ -32,6 +33,7 @@ jobs: git clone git://git.kernel.org/pub/scm/utils/trace-cmd/trace-cmd.git cd trace-cmd make + sudo make install sudo make install_libs - name: Create Build Environment # Some projects don't allow in-source building, so create a separate build directory -- 2.25.1