Skip to content

Commit

Permalink
Update tests-action.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
JAndringa committed May 1, 2023
1 parent c404437 commit 5fb01bc
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/tests-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,18 @@ jobs:

- name: Install dependecies
run: sudo apt-get install -y cmake g++ qtbase5-dev qtchooser qt5-qmake qtbase5-dev-tools libqt5charts5-dev libsdl2-dev libzmq3-dev libeigen3-dev libgtest-dev ninja-build

- name: Install Protobuf
if: steps.cache-build-restore.outputs.cache-hit != 'true'
run: git clone https://github.com/protocolbuffers/protobuf.git /opt/protobuf &&
cd /opt/protobuf &&
git checkout 3.19.x &&
git submodule update --init --recursive &&
./autogen.sh &&
./configure &&
make -j $(nproc) &&
make install &&
ldconfig &&

- name: Configure
if: steps.cache-build-restore.outputs.cache-hit != 'true'
Expand Down

0 comments on commit 5fb01bc

Please sign in to comment.