From: Martin Quinson Date: Sun, 12 Sep 2021 19:49:58 +0000 (+0200) Subject: CI wrench: we need googletest from source (?) X-Git-Tag: v3.29~96 X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/033eba8077272cd22e18d03b34e7a9554ec0244f CI wrench: we need googletest from source (?) --- diff --git a/.github/workflows/ci-wrench.yml b/.github/workflows/ci-wrench.yml index c8358ab3d3..53f6f382cc 100644 --- a/.github/workflows/ci-wrench.yml +++ b/.github/workflows/ci-wrench.yml @@ -26,7 +26,11 @@ jobs: apt -y install libboost-all-dev apt -y install libpugixml-dev apt -y install nlohmann-json3-dev - apt -y install googletest + - name: Install googletest + run: | + wget https://github.com/google/googletest/archive/release-1.8.0.tar.gz + tar xf release-1.8.0.tar.gz + cd googletest-release-1.8.0/googletest && cmake . && make install - name: Build and test WRENCH run: | set -e