47 lines
1.6 KiB
YAML
47 lines
1.6 KiB
YAML
language: cpp
|
|
os:
|
|
- linux
|
|
- osx
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- cmake
|
|
- libsdl2-dev
|
|
- liblua5.1-0-dev
|
|
- libtolua++5.1-dev
|
|
- libtolua-dev
|
|
- zlib1g-dev
|
|
- libpng12-dev
|
|
before_script:
|
|
- "if [ $TRAVIS_OS_NAME == osx ]; then brew install lua51 sdl; \
|
|
git clone https://github.com/LuaDist/toluapp.git; \
|
|
cd toluapp; mkdir build;
|
|
cd build; cmake ..; make; \
|
|
export CMAKEARGS=\"-DTOLUA++_INCLUDE_DIR=$(pwd)/../include/ -DTOLUA++_LIBRARY=$(pwd)/libtoluapp.dylib -DTOLUA++_APP=$(pwd)/toluapp -DWITH_X11=OFF\";
|
|
cd ..;
|
|
cd ..;
|
|
fi"
|
|
- mkdir build
|
|
- cd build
|
|
- cmake $CMAKEARGS ..
|
|
script: make
|
|
after_success:
|
|
- "if [ $TRAVIS_REPO_SLUG == Wargus/stratagus -a \
|
|
$TRAVIS_BRANCH == master -a \
|
|
$TRAVIS_OS_NAME == osx -a \
|
|
$TRAVIS_PULL_REQUEST == 'false' ]; then \
|
|
git clone https://${GH_TOKEN}@github.com/Wargus/stratagus.wiki.git;
|
|
mkdir -p stratagus.wiki/$TRAVIS_OS_NAME;
|
|
cp $TRAVIS_BUILD_DIR/build/stratagus stratagus.wiki/$TRAVIS_OS_NAME/;
|
|
rm -rf macdylibbundler; git clone https://github.com/auriamg/macdylibbundler;
|
|
cd macdylibbundler; make; cd ..;
|
|
macdylibbundler/dylibbundler -cd -of -b -x stratagus.wiki/$TRAVIS_OS_NAME/stratagus -d stratagus.wiki/libs/;
|
|
cd stratagus.wiki/;
|
|
git config --global user.email \"travis-ci@travis.org\";
|
|
git config --global user.name \"Travis CI\";
|
|
git add $TRAVIS_OS_NAME/stratagus;
|
|
git add libs;
|
|
git commit --amend -C HEAD;
|
|
git push -fq origin master;
|
|
cd ..;
|
|
fi"
|