-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
be5a681
commit 7410172
Showing
1 changed file
with
28 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|