summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2021-03-30 08:33:45 +0200
committerEugen Wissner <belka@caraus.de>2021-03-30 08:33:45 +0200
commit60b0562311ea13b2c5956b1a7dc37015e9c38c9b (patch)
tree1be60da08e585a2c9db10c13838fe1054cdbea0a /.travis.yml
parent92284c85417506c1a753a4741185fd998181d959 (diff)
downloadtanya-60b0562311ea13b2c5956b1a7dc37015e9c38c9b.tar.gz
Update CI information
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml68
1 files changed, 0 insertions, 68 deletions
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 2c531eb..0000000
--- a/.travis.yml
+++ /dev/null
@@ -1,68 +0,0 @@
-sudo: false
-
-os:
-- linux
-- osx
-
-language: d
-
-d:
-- dmd-2.091.1
-
-env:
- global:
- - LATEST=2.091.1
-
- matrix:
- - ARCH=x86_64
- - ARCH=x86
-
-matrix:
- include:
- - name: D-Scanner
- d: dmd-$LATEST
- env: DSCANNER=0.7.0
- os: linux
- - name: DDoc
- d: dmd-$LATEST
- env: DDOC=true
- os: linux
-
-addons:
- apt:
- packages:
- - gcc-multilib
-
-before_script:
-- if [ "`$DC --version | head -n 1 | grep v$LATEST`" ] &&
- [ -z "$DSCANNER$DDOC" ]; then
- export UNITTEST="unittest-cov";
- fi
-
-script:
-- set -e;
- if [ -n "$DDOC" ]; then
- dub build :meta -b ddox --compiler=$DC;
- dub build :sys -b ddox --compiler=$DC;
- dub build :os -b ddox --compiler=$DC;
- dub build :encoding -b ddox --compiler=$DC;
- dub build :middle -b ddox --compiler=$DC;
- dub build :test -b ddox --compiler=$DC;
- dub build -b ddox --compiler=$DC;
- elif [ -z "$DSCANNER" ]; then
- dub test :meta -b ${UNITTEST:-unittest} --arch=$ARCH --compiler=$DC;
- dub test :sys -b ${UNITTEST:-unittest} --arch=$ARCH --compiler=$DC;
- dub test :os -b ${UNITTEST:-unittest} --arch=$ARCH --compiler=$DC;
- dub test :encoding -b ${UNITTEST:-unittest} --arch=$ARCH --compiler=$DC;
- dub test :middle -b ${UNITTEST:-unittest} --arch=$ARCH --compiler=$DC;
- dub test :test -b ${UNITTEST:-unittest} --arch=$ARCH --compiler=$DC;
- dub test -b ${UNITTEST:-unittest} --arch=$ARCH --compiler=$DC;
- else
- dub fetch dscanner --version=$DSCANNER;
-
- FILES=$(find */tanya -type f);
- dub run dscanner -- --styleCheck $FILES;
- fi
-
-after_success:
-- test "$UNITTEST" && bash <(curl -s https://codecov.io/bash) || true