Skip to content

Commit 65e4319

Browse files
committed
2 parents 4e03763 + d68477f commit 65e4319

File tree

2 files changed

+35
-0
lines changed

2 files changed

+35
-0
lines changed

.travis.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
branches:
2+
except:
3+
- /^[0-9]/
4+
language: cpp
5+
compiler:
6+
- gcc
7+
before_install:
8+
- sudo apt-get update -qq
9+
- sudo apt-get install -y build-essential
10+
- sudo apt-get install -y nano cmake libboost1.48-all-dev libsqlite3-dev curl libcurl4-openssl-dev libusb-dev zlib1g-dev libssl-dev libudev-dev git
11+
- git clone https://github.com/OpenZWave/open-zwave.git
12+
- ln -s open-zwave open-zwave-read-only
13+
- git fetch --unshallow
14+
script:
15+
- (cd open-zwave-read-only; make)
16+
- cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_LIBRARY_PATH=open-zwave-read-only
17+
- make
18+
before_deploy:
19+
- tar czf domoticz_${TRAVIS_BUILD_NUMBER}.tgz domoticz History.txt License.txt svnversion.h domoticz.sh --exclude .git www/ scripts/ Config/

appveyor.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
version: 1.0.{build}
2+
os: Visual Studio 2015
3+
4+
install:
5+
- ps: cinst innosetup
6+
7+
build_script:
8+
- cd msbuild
9+
- appveyor DownloadFile https://github.com/domoticz/win32-libraries/blob/master/WindowsLibraries.zip?raw=true
10+
- '7z x WindowsLibraries.zip > NUL:'
11+
- cd ..
12+
- msbuild msbuild\domoticz.sln /p:Configuration=Release /verbosity:minimal /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
13+
- '"C:\Program Files (x86)\Inno Setup 5\ISCC.exe" msbuild\WindowsInstaller\DomoticzSetup.iss'
14+
15+
artifacts:
16+
- path: msbuild\WindowsInstaller\DomoticzSetup*.exe

0 commit comments

Comments
 (0)