-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path.travis.yml
83 lines (67 loc) · 1.59 KB
/
.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# .travis.yml --
#
# Travis CI configuration for MBFL.
#page
#### global configuration
language: bash
#sudo: true
# Let's just look at the project's dashboard at Travis CI's site.
#
notifications:
email: false
# We do no git operations, so set the "git clone" depth to the minimum.
#
git:
depth: 1
branches:
only:
- master
- test-signal-module.marcomaggi-2020-0923
# NOTE There must be only *one* env.global key!!! Otherwise the earlier
# settings will be ineffective.
env:
global:
- MAKEFLAGS="-j 2"
- VERBOSE=1
#page
#### dependencies management
install:
- ./meta/travis-ci/install-bash-4.sh;
#page
#### build scripts
before_script:
- sh ./autogen.sh;
matrix:
fast_finish: true
include:
# Plain build under Ubuntu GNU+Linux "xenial".
- os: linux
dist: xenial
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- lzip
- texinfo
- coreutils
script: |
./configure --enable-maintainer-mode BASH_PROGRAM=/usr/local/bin/bash;
make all;
make check || { cat test-suite.log; false; };
(umask 0; sudo make install);
make installcheck;
# Plain build under OS X, XCode 10.1.
- os: osx
osx_image: xcode10.1
addons:
homebrew:
packages:
- coreutils
script: |
./configure --enable-maintainer-mode BASH_PROGRAM=/usr/local/bin/bash;
make all;
make check || { cat test-suite.log; false; };
(umask 0; sudo make install);
make installcheck;
### end of file