From c0a5f45a6f6b5c07ae2d9aba51100376c5767776 Mon Sep 17 00:00:00 2001 From: Insineer Date: Mon, 2 Dec 2019 05:14:36 +0300 Subject: [PATCH] add(CI): add lemon library to CI --- CI/appveyor/appveyor-debug.yml | 1 + CI/appveyor/appveyor-release.yml | 1 + CI/travis/install_dependencies.sh | 10 ++++++++++ 3 files changed, 12 insertions(+) diff --git a/CI/appveyor/appveyor-debug.yml b/CI/appveyor/appveyor-debug.yml index 687989d..2ccb60e 100644 --- a/CI/appveyor/appveyor-debug.yml +++ b/CI/appveyor/appveyor-debug.yml @@ -29,6 +29,7 @@ install: - vcpkg install python3:x64-windows-static - vcpkg install sfml:x64-windows-static + - vcpkg install liblemon:x64-windows-static - vcpkg install gtest:x64-windows-static cache: c:\tools\vcpkg\installed diff --git a/CI/appveyor/appveyor-release.yml b/CI/appveyor/appveyor-release.yml index 7dbf573..5f6ac23 100644 --- a/CI/appveyor/appveyor-release.yml +++ b/CI/appveyor/appveyor-release.yml @@ -35,6 +35,7 @@ install: - vcpkg install "python3:%platform%-windows" - vcpkg install "python3:%platform%-windows-static" + - vcpkg install "liblemon:&platform%-windows-static" - vcpkg install "sfml:%platform%-windows-static" - vcpkg install "gtest:%platform%-windows-static" diff --git a/CI/travis/install_dependencies.sh b/CI/travis/install_dependencies.sh index 8dfd932..22ae440 100755 --- a/CI/travis/install_dependencies.sh +++ b/CI/travis/install_dependencies.sh @@ -21,3 +21,13 @@ if [ ! -d /home/travis/vcpkg/.git ]; then ./vcpkg integrate install ./vcpkg install gtest fi + +cd ~ +wget http://lemon.cs.elte.hu/pub/sources/lemon-1.3.1.tar.gz +tar zxf lemon-1.3.1.tar.gz +cd lemon-1.3.1 +mkdir build +cd build +cmake .. +make +sudo make install