forked from sociomantic-tsunami/dlsnode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
30 lines (23 loc) · 781 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# We will use docker to set up out environment, so don't use any particular
# language in Travis itself
language: generic
# Enable docker
sudo: required
services:
- docker
# Disable automatic submodule fetching (it's done recursively)
git:
submodules: false
# Do a shallow submodule fetch
before_install: git submodule update --init
env:
global:
# Make sure beaver is in the PATH
- PATH="$(git config -f .gitmodules submodule.beaver.path)/bin:$PATH"
matrix:
- DMD=dmd1 DIST=xenial F=production AFTER_SCRIPT=1
- DMD=dmd1 DIST=xenial F=devel
- DMD=dmd-transitional DIST=xenial F=production
- DMD=dmd-transitional DIST=xenial F=devel
install: beaver dlang install
script: BEAVER_DOCKER_VARS="F" beaver dlang make