-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
50 lines (40 loc) · 851 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
language: perl
perl:
- "5.8"
addons:
apt:
packages:
- tree
- realpath
- uuid-runtime
- moreutils
- tidy
install:
- PREFIX=$DEP_PREFIX ./install-dependencies.sh all
- pip install --user -r requirements.txt
- cpanm -h
- cpanm --install URI::Escape
before_script: []
script:
- ./configure
- test "$PREFIX" = "./usr" || ./install.sh
- make stat build test -f Makefile.mkdoc
env:
global:
- CS=dark
- DEP_PREFIX=$HOME/.local
- PATH=$PATH:$DEP_PREFIX/bin:$PREFIX/bin
- Build_Deps_Default_Paths=1
matrix:
- ENV_NAME=development PREFIX=./usr
- ENV_NAME=testing PREFIX=$HOME/.local
#- ENV_NAME=production PREFIX=/usr/local
branches:
only:
- master
- '/^dev.*/'
- '/^test.*/'
- '/^[0-9]*\.[0-9]*\.[0-9]*/'
notifications:
email:
on_success: never