From 3da9393a177f27b1515c0c064b50e04ab914dc33 Mon Sep 17 00:00:00 2001 From: Mike Bierlee Date: Sun, 22 Mar 2015 14:19:29 +0100 Subject: [PATCH] Change name of default build type to "library" --- .travis.yml | 13 +++++++------ dub.json | 2 +- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index fdd8525..54756be 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,7 @@ -language: d - -script: - - dub test --build=unittest --config=unittest - - dub build --build=release --config=quickstartExample - - dub build --build=release --config=qualifiersExample +language: d + +script: + - dub build --build=release --config=library + - dub test --build=unittest --config=unittest + - dub build --build=release --config=quickstartExample + - dub build --build=release --config=qualifiersExample diff --git a/dub.json b/dub.json index a5c17ff..e24c7ea 100644 --- a/dub.json +++ b/dub.json @@ -7,7 +7,7 @@ "license": "MIT", "configurations": [ { - "name": "build", + "name": "library", "targetType": "library" }, {