@@ -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
Fix the part of the script that installs the third party libraries. Signed-off-by: Yordan Karadzhov (VMware) <y.karadz@gmail.com> --- .github/workflows/main.yml | 2 ++ 1 file changed, 2 insertions(+)