Skip to content

Commit

Permalink
Update .travis.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
John-Colvin committed Aug 20, 2015
1 parent be5a681 commit 7410172
Showing 1 changed file with 28 additions and 23 deletions.
51 changes: 28 additions & 23 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,37 +1,42 @@
sudo: false

language: d

#compiler:
# - dmd
os:
- linux
- osx

d:
- dmd-2.068.0
- dmd-2.067.1
- dmd-2.066.1
- ldc-0.15.1
- gdc

matrix:
allow_failures:
- os: osx
d: gdc
- env: ARCH=x86
d: gdc

addons:
apt:
packages:
- gcc-multilib

notifications:
email: false

env:
global:
- secure: "wnthDxOwv7qaVfJQfwYQLFo4DDBgfT4HoLntBsfmYjwmSVzCuXPktCK3vOpimb5twyiVNkt1I/82x8lyYpiczKqPcNZqd8p91mInt5eKIf8Gacqb3a1FwGyk9bwHSZdYpQiblY/wMVb0+WJTuhlVf1NI5xXMWCf1l88+1q6E6jo="

install:
# dmd
# dub
- DMD_VER=2.066.1
- DMD=dmd_${DMD_VER}-0_amd64.deb
- DUB_VER=0.9.22
- DUB=dub-${DUB_VER}-linux-x86_64
#- sudo apt-get install liblua5.1-0-dev
- wget http://downloads.dlang.org/releases/2014/${DMD}
- sudo dpkg -i ${DMD} || true
- sudo apt-get -y update
- sudo apt-get -fy install
- sudo dpkg -i ${DMD}
- wget http://code.dlang.org/files/${DUB}.tar.gz
- sudo tar -C /usr/local/bin -zxf ${DUB}.tar.gz
# 32-bit deps
- sudo apt-get install gcc-multilib
matrix:
- ARCH=x86
- ARCH=x86_64

script:
- dub test
- dub test --arch=x86
- dub test --arch=$ARCH

after_success:
- ./push-ddoc.sh

0 comments on commit 7410172

Please sign in to comment.