-
Notifications
You must be signed in to change notification settings - Fork 41
/
.travis.yml
82 lines (75 loc) · 1.36 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
branches:
only:
- master
- coverity_scan
language: c
arch:
- amd64
- arm64
- ppc64le
- s390x
compiler:
- gcc
- clang
os:
- linux
- freebsd
- osx
jobs:
exclude:
- os: osx
compiler: gcc
include:
- name: 'Linux 32-bit gcc'
arch: amd64
compiler: gcc
os: linux
env: CFLAGS=-m32
addons:
apt:
packages:
- gcc-multilib
- lib32ncurses5-dev
- libncurses5-dev
- make
- name: 'Linux 32-bit clang'
arch: amd64
compiler: clang
os: linux
env: CFLAGS=-m32
addons:
apt:
packages:
- gcc-multilib
- lib32ncurses5-dev
- libncurses5-dev
- make
- name: 'FreeBSD 32-bit gcc'
arch: amd64
compiler: gcc
os: freebsd
env: CFLAGS=-m32
- name: 'FreeBSD 32-bit clang'
arch: amd64
compiler: clang
os: freebsd
env: CFLAGS=-m32
addons:
apt:
packages:
- libncurses5-dev
- make
coverity_scan:
project:
name: tcsh-org/tcsh
version: 6.22
description: C shell with file name completion and command line editing
notification_email: tcsh-notify@tcsh.org
build_command_prepend: ./configure
build_command: make
# https://scan.coverity.com/faq#frequency
branch_pattern: coverity_scan
script: >-
if [ "${COVERITY_SCAN_BRANCH}" != 1 ] ;
then ./configure && make && make test ;
fi