tanya/.travis.yml

35 lines
492 B
YAML
Raw Normal View History

sudo: false
os:
2017-06-13 10:45:15 +02:00
- linux
- osx
language: d
d:
2018-03-03 08:34:06 +01:00
- dmd-2.079.0
2018-02-16 16:35:53 +01:00
- dmd-2.078.3
2017-12-02 10:40:40 +01:00
- dmd-2.077.1
2017-10-10 07:03:04 +02:00
- dmd-2.076.1
env:
2017-06-13 10:45:15 +02:00
matrix:
- ARCH=x86_64
- ARCH=x86
2017-06-12 19:02:47 +02:00
addons:
2017-06-13 10:45:15 +02:00
apt:
packages:
- gcc-multilib
2017-06-12 19:02:47 +02:00
before_script:
2018-03-03 08:34:06 +01:00
- if [ "$PS1" = '(dmd-2.079.0)' ]; then
2017-06-13 10:45:15 +02:00
export UNITTEST="unittest-cov";
fi
script:
2017-06-13 10:45:15 +02:00
- dub test -b ${UNITTEST:-unittest} --arch=$ARCH --compiler=$DC
2017-05-11 13:11:12 +02:00
after_success:
2017-06-13 10:45:15 +02:00
- test "$UNITTEST" = "unittest-cov" && bash <(curl -s https://codecov.io/bash)