forked from domoticz/domoticz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
101 lines (92 loc) · 3.07 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
branches:
except:
- /^[0-9]/
language: cpp
cache:
- apt
update-alternatives:
- install /usr/bin/gcc gcc /usr/bin/gcc-4.9 50
- install /usr/bin/g++ g++ /usr/bin/g++-4.9 50
sources:
- trusty
# What to install before the build
before_install:
# Domoticz needs the full history to be able to calculate the version string
- git fetch --unshallow
# OpenZWave
- git clone https://github.com/OpenZWave/open-zwave.git open-zwave-read-only
# - ln -s open-zwave open-zwave-read-only
# Build matrix definition
# * Two builds
# 1. Linux x86_64
# 2. Apple OSX
matrix:
include:
# Linux x86_64
- os: linux
dist: trusty
sudo: required
compiler:
- gcc
env: TARGET_ARCHITECTURE=x86_64
addons:
apt:
sources:
- george-edison55-precise-backports # cmake
- ubuntu-toolchain-r-test
- boost-latest
packages:
- gcc-4.9
- g++-4.9
- libboost1.55-all-dev
- cmake
- cmake-data
- libsqlite3-dev
- curl
- libcurl4-openssl-dev
- libusb-dev
- zlib1g-dev
- libssl-dev
- libudev-dev
- git
- libdigest-sha-perl
- python3-dev
script:
- (cd open-zwave-read-only; wget https://github.com/OpenZWave/open-zwave/pull/1125.patch; patch -p1 < 1125.patch; make)
- cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_LIBRARY_PATH=open-zwave-read-only
- make
# Apple OSX
- os: osx
osx_image: xcode6.2
compiler:
- gcc
env: TARGET_ARCHITECTURE=x86_64
install:
- brew install boost|| true
- brew install libusb
- brew install libusb-compat
- brew install zlib || true
- brew install openssl
- brew link openssl --force
- brew install md5sha1sum
- brew install python3
- brew linkapps python3
- export OPENSSL_ROOT_DIR=/usr/local/opt/openssl
script:
- which python3
- cmake -DCMAKE_BUILD_TYPE=Release -DPYTHON_INCLUDE_DIR=$(python3-config --prefix)/Headers -DPYTHON_LIBRARY=$(python3-config --prefix)/lib/libpython3.6.dylib
- make
# What to do with the build artifacts
# - Upload to the Domoticz file server
before_deploy:
- tar czf domoticz_${TRAVIS_OS_NAME}_${TARGET_ARCHITECTURE}.tgz domoticz History.txt License.txt domoticz.sh server_cert.pem updatebeta updaterelease www/ scripts/ Config/
- shasum -a 256 domoticz_${TRAVIS_OS_NAME}_${TARGET_ARCHITECTURE}.tgz > domoticz_${TRAVIS_OS_NAME}_${TARGET_ARCHITECTURE}.tgz.sha256sum
- cp appversion.h.txt version_${TRAVIS_OS_NAME}_${TARGET_ARCHITECTURE}.h
- cp History.txt history_${TRAVIS_OS_NAME}_${TARGET_ARCHITECTURE}.txt
deploy:
skip_cleanup: true
provider: script
script: curl --ftp-ssl -T "{domoticz_${TRAVIS_OS_NAME}_${TARGET_ARCHITECTURE}.tgz,domoticz_${TRAVIS_OS_NAME}_${TARGET_ARCHITECTURE}.tgz.sha256sum,version_${TRAVIS_OS_NAME}_${TARGET_ARCHITECTURE}.h,history_${TRAVIS_OS_NAME}_${TARGET_ARCHITECTURE}.txt,History.txt}" -k -u "$FTP_USER:$FTP_PASSWORD" "ftp://$FTP_HOST/beta/"
on:
branch: master
repo: domoticz/domoticz