From 019932a28c56382c216eaf023bf74c6630f593bf Mon Sep 17 00:00:00 2001 From: Giulio Romualdi Date: Tue, 22 Oct 2019 19:52:21 +0200 Subject: [PATCH] Update ci.yml --- .github/workflows/ci.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a2467e7..d86a5eb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,7 +29,14 @@ jobs: - name: Dependencies [windows] if: matrix.os == 'windows-latest' run: | - vcpkg.exe install --triplet x64-windows gtest eigen3 + vcpkg.exe install --triplet x64-windows gtest + hg clone https://bitbucket.org/eigen/eigen + cd eigen + md build + cd build + cmake .. + cmake --build . --config Release --target INSTALL + SET Eigen3_DIR=C:/Program Files (x86)/Eigen/lib/cmake/eigen3/ - name: Dependencies [Ubuntu] if: matrix.os == 'ubuntu-latest'