travis fixes

This commit is contained in:
John Colvin 2015-12-18 10:15:11 +00:00
parent 48a6f5754a
commit ea3b7931bd
2 changed files with 52 additions and 0 deletions

View File

@ -1 +1,51 @@
sudo: required
dist: trusty
language: d
os:
- linux
- osx
env:
- ARCH=x86
- ARCH=x86_64
# No-one cares about OS X x86
matrix:
exclude:
- os: osx
env: ARCH=x86
# Sort out packages
install:
- |
if [ $TRAVIS_OS_NAME == osx ]
then
brew update
brew install sdl2
elif [ $TRAVIS_OS_NAME == linux ]
then
if [ $ARCH == x86 ]
then
sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install -y gcc-multilib libgl1-mesa-glx:i386 libfreetype6:i386 libsdl2-2.0-0:i386
else
sudo apt-get update
sudo apt-get install -y libfreetype6 libsdl2-2.0-0
fi
fi
# Start a virtual x-server.
before_script:
- |
if [ $TRAVIS_OS_NAME == linux ]
then
export DISPLAY=:99.0
sh -e /etc/init.d/xvfb start
sleep 3
fi
script:
- dub test --arch=$ARCH

View File

@ -1,3 +1,5 @@
[![Build Status](https://travis-ci.org/buggins/dlangide.svg?branch=master)](https://travis-ci.org/buggins/dlangide)
Dlang IDE
=========