summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2019-03-17 10:56:44 +0100
committerEugen Wissner <belka@caraus.de>2019-03-17 10:56:44 +0100
commit5ab99cf8873b130284336c52551ccede28f6cb2e (patch)
treea8f0770dfd9410566eb6d941fbea78b1ce840a9a /.travis.yml
parent85d7a2b9ca122301bc1ba9e6167f7533cbd1b2e4 (diff)
downloadtanya-5ab99cf8873b130284336c52551ccede28f6cb2e.tar.gz
Move memory functions into memory.lifecycle
- move - moveEmplace - forward - emplace - swap
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml6
1 files changed, 4 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 3cb4f7a..ee8283f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -23,7 +23,7 @@ matrix:
include:
- name: D-Scanner
d: dmd-$LATEST
- env: DSCANNER=0.6.0
+ env: DSCANNER=0.7.0
os: linux
- name: DDoc
d: dmd-$LATEST
@@ -32,7 +32,7 @@ matrix:
allow_failures:
- name: D-Scanner
d: dmd-$LATEST
- env: DSCANNER=0.6.0
+ env: DSCANNER=0.7.0
os: linux
addons:
@@ -53,12 +53,14 @@ script:
dub build :sys -b ddox --compiler=$DC;
dub build :os -b ddox --compiler=$DC;
dub build :encoding -b ddox --compiler=$DC;
+ dub build :memory -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 :memory -b ${UNITTEST:-unittest} --arch=$ARCH --compiler=$DC;
dub test -b ${UNITTEST:-unittest} --arch=$ARCH --compiler=$DC;
else
dub fetch dscanner --version=$DSCANNER;