aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 68ac70ee16f017a37f9c2dbe2a21401693a2f06a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
sudo: false

os:
 - linux
 - osx

language: d

d:
 - dmd-2.074.1
 - dmd-2.073.2
 - dmd-2.072.2
 - dmd-2.071.2

env: 
 matrix:
  - ARCH=x86_64
  - ARCH=x86

addons:
 apt:
  packages:
   - gcc-multilib

before_script:
 - if [ "$PS1" = '(dmd-2.074.1)' -a "$ARCH" = 'x86_64' ]; then
    export UNITTEST="unittest-cov";
   fi

script:
 - dub test -b ${UNITTEST:-unittest} --arch=$ARCH --compiler=$DC

after_success:
 - test "$UNITTEST" = "unittest-cov" && bash <(curl -s https://codecov.io/bash)