Skip to content

Commit

Permalink
add(CI): add lemon library to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Insineer committed Dec 2, 2019
1 parent f66fc6f commit c0a5f45
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
1 change: 1 addition & 0 deletions CI/appveyor/appveyor-debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
1 change: 1 addition & 0 deletions CI/appveyor/appveyor-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
10 changes: 10 additions & 0 deletions CI/travis/install_dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit c0a5f45

Please sign in to comment.