forked from haakonnessjoen/MAC-Telnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
80 lines (67 loc) · 1.47 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
language: c
sudo: required
matrix:
include:
- os: linux
dist: trusty
env: OS_NAME="linux"
# Linux Ubuntu Trusty
- os: osx
osx_image: xcode9
env: OS_NAME="osx" OS_VERSION="10.13" OS_BUILD="brew"
# Apple OSX 10.13 High Sierra
- os: osx
osx_image: xcode8.3
env: OS_NAME="osx" OS_VERSION="10.12" OS_BUILD="brew"
# Apple OSX 10.12 Sierra
- os: osx
osx_image: xcode8
env: OS_NAME="osx" OS_VERSION="10.11" OS_BUILD="brew"
# Apple OSX 10.11 El Capitan
- os: osx
osx_image: xcode6.4
env: OS_NAME="osx" OS_VERSION="10.10 10.9" OS_BUILD="sources"
# Apple OSX 10.10 Yosemite
# Apple OSX 10.9 Mavericks
- os: linux
dist: trusty
sudo: required
env: OS_NAME="centos" OS_VERSION="7" OS_BUILD="rpmbuilder"
services: docker
# DOCKER CentOS 7
compiler: gcc
notifications:
email:
on_success: never
on_failure: change
branches:
only:
- master
addons:
apt:
packages:
- automake
- autoconf
- libtool
- m4
- gettext
before_install:
- chmod a+x ./.travis/before_install.sh
- ./.travis/before_install.sh
script:
- chmod a+x ./.travis/script.sh
- ./.travis/script.sh
#after_success:
# - .travis/after_success.sh
after_script:
- set +e
# Deploy Release Package
#deploy:
# provider: releases
# api_key:
# secure:
# file:
# skip_clean: true
# on:
# repo: haakonnessjoen/MAC-Telnet
# tags: true