-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy path.travis.yml.disabled
69 lines (67 loc) · 2.15 KB
/
.travis.yml.disabled
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
sudo: required
dist: xenial
osx_image: xcode9.4
os:
- osx
- linux
language: cpp
cache:
- ccache
- directories:
- $HOME/Library/Caches/Homebrew
env:
global:
CCACHE_MAXSIZE: 1G
matrix:
- target_v=osx
- target_v=osx_test
- target_v=linux_wallet_test
- target_v=linux_wallet
- target_v=linux_daemon
- target_v=windows_x86
- target_v=rpi_daemon
- target_v=rpi_wallet_test
- target_v=rpi_wallet
matrix:
exclude:
- os: osx
env: target_v=windows_x86
- os: osx
env: target_v=linux_daemon
- os: osx
env: target_v=linux_wallet
- os: osx
env: target_v=linux_wallet_test
- os: osx
env: target_v=rpi_daemon
- os: osx
env: target_v=rpi_wallet
- os: osx
env: target_v=rpi_wallet_test
- os: linux
env: target_v=osx
- os: linux
env: target_v=osx_test
before_install:
- if [[ "$target_v" == "osx" ]]; then rm -rf ~/.nvm/ && git clone --depth 1 https://github.com/creationix/nvm.git ~/.nvm ; fi
- if [[ "$target_v" == "osx" ]]; then source ~/.nvm/nvm.sh ; fi
- if [[ "$target_v" == "osx" ]]; then nvm install 12 ; fi
- if [[ "$target_v" == "osx" ]]; then nvm use 12 ; fi
install:
before_script:
script:
- if [[ "$target_v" == "osx" ]]; then python ci_scripts/test_osx-gui_wallet.py ; fi
- if [[ "$target_v" == "osx_test" ]]; then python ci_scripts/test_osx-gui_wallet.py -t ; fi
- if [[ "$target_v" == "linux_wallet_test" ]]; then python ci_scripts/test_linux-gui_wallet.py -t ; fi
- if [[ "$target_v" == "linux_wallet" ]]; then python ci_scripts/test_linux-gui_wallet.py ; fi
- if [[ "$target_v" == "linux_daemon" ]]; then python ci_scripts/test_linux-daemon.py ; fi
- if [[ "$target_v" == "windows_x86" ]]; then python ci_scripts/test_win_x86-gui_wallet.py ; fi
- if [[ "$target_v" == "rpi_wallet" ]]; then python ci_scripts/test_rpi-daemon-gui.py ; fi
- if [[ "$target_v" == "rpi_wallet_test" ]]; then python ci_scripts/test_rpi-daemon-gui.py -t ; fi
- if [[ "$target_v" == "rpi_daemon" ]]; then python ci_scripts/test_rpi-daemon-gui.py ; fi
after_script:
- echo "Done"
notifications:
email:
recipients:
- info@nebl.io