From 6652083cbfe23f1694bd419c84236e7dff534666 Mon Sep 17 00:00:00 2001 From: Martin Nowak Date: Sun, 30 Aug 2015 18:15:50 +0200 Subject: [PATCH] use official Travis-CI D support - see http://docs.travis-ci.com/user/languages/d/ - use `sudo: false` for container based infrastructure --- .travis.yml | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/.travis.yml b/.travis.yml index 150bdb2..cf18889 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,17 +1,2 @@ language: d -script: dub test - -install: - # dmd - # dub - - DMD_VER=2.065.0 - - DMD=dmd_${DMD_VER}-0_amd64.deb - - DUB_VER=0.9.21 - - DUB=dub-${DUB_VER}-linux-x86_64 - - wget http://downloads.dlang.org/releases/2014/${DMD} - - sudo dpkg -i ${DMD} || true - - sudo apt-get -y update - - sudo apt-get -fy install - - sudo dpkg -i ${DMD} - - wget http://code.dlang.org/files/${DUB}.tar.gz - - sudo tar -C /usr/local/bin -zxf ${DUB}.tar.gz +sudo: false