OpenRCT2/.travis.yml

19 lines
870 B
YAML
Raw Normal View History

2014-05-24 01:20:15 +09:00
language: c
2014-05-24 02:16:51 +09:00
before_install:
2014-05-24 11:18:43 +09:00
- echo "yes" | sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu `lsb_release -sc` main universe restricted multiverse"
- echo "yes" | sudo apt-add-repository ppa:openmw/deps
2014-05-24 11:25:26 +09:00
- sudo apt-key update -qq
2014-05-24 11:18:43 +09:00
- sudo apt-get update -qq
2014-05-24 11:56:11 +09:00
- sudo apt-get install -y --force-yes binutils-mingw-w64-i686 gcc-mingw-w64-i686 g++-mingw-w64-i686 libsdl2-static-dev
2014-05-24 11:36:10 +09:00
- ls -al /usr/bin
- ls -al /usr/include/SDL2
2014-05-24 12:16:52 +09:00
- sudo mv /usr/include/SDL2 /usr/include/sdl2
script:
2014-05-24 12:19:41 +09:00
- sudo find / -name SDL2 2>>/dev/null || true
2014-05-24 11:09:22 +09:00
- mkdir build
2014-05-24 12:24:57 +09:00
- pushd build && SDL_INCLUDE_DIRS=/usr/include/SDL2 cmake -DCMAKE_TOOLCHAIN_FILE=../CMakeLists_mingw.txt -DCMAKE_BUILD_TYPE=Debug .. && popd
2014-05-24 12:33:34 +09:00
- sudo find / -name iconv.h 2>>/dev/null || true
- pushd build && make && popd
#notifications:
#irc: "irc.freenode.net#openrct2"