-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
81 lines (80 loc) · 2.26 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
sudo: false
language: cpp
matrix:
include:
#linux
- os: linux
services: docker
env:
- V=Dockerfile-stretch
script:
- ./archive.sh
- docker build -f scripts/docker/debian/Dockerfile-stretch .
- os: linux
services: docker
env:
- V=Dockerfile-jessie
script:
- ./archive.sh
- docker build -f scripts/docker/debian/Dockerfile-jessie .
- os: linux
sudo: required
env:
- V=ubuntu
before_install:
- ./scripts/travis-uninstall-packages.sh
- ./scripts/dependencies-ubuntu.sh
install: true
script:
- ./scripts/install-ubuntu.sh
- os: linux
sudo: required
env:
- V=ubuntu-debuild
before_install:
- ./scripts/travis-uninstall-packages.sh
- ./scripts/dependencies-ubuntu.sh
install: true
script:
- ./scripts/debuild.sh
#cross compile windows
- os: linux
services: docker
env:
- V=windows-Dockerfile-wheezy
script:
- ./archive.sh
- travis_wait 60 docker build -f scripts/docker/windows-crosscompile/Dockerfile-wheezy .
- os: linux
services: docker
env:
- V=windows-Dockerfile-xenial
script:
- ./archive.sh
- travis_wait 60 docker build -f scripts/docker/windows-crosscompile/Dockerfile-xenial .
- os: linux
services: docker
env:
- V=windows-Dockerfile-trusty
script:
- ./archive.sh
- travis_wait 60 docker build -f scripts/docker/windows-crosscompile/Dockerfile-trusty .
- os: linux
sudo: required
env:
- V=windows-ubuntu
before_install:
- cd $TRAVIS_BUILD_DIR/scripts/windows-crosscompile
- pwd && ls -al
- travis_wait 60 ./dependencies.sh
- cd $TRAVIS_BUILD_DIR
install: true
script:
- travis_wait 60 ./scripts/windows-crosscompile/compile-meconcash.sh
#osx
- os: osx
osx_image: xcode9.2
before_script:
- ./scripts/dependencies-osx.sh
script:
- ./scripts/install-osx.sh