Skip to content

Instantly share code, notes, and snippets.

@NCrashed
Created April 6, 2014 15:24
Show Gist options
  • Save NCrashed/10007508 to your computer and use it in GitHub Desktop.
Save NCrashed/10007508 to your computer and use it in GitHub Desktop.
TravisCI config for D programming language
language: d
install:
- 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
script:
- dub build
- dub test
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment