forked from Sigil-Ebook/Sigil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
80 lines (72 loc) · 2.16 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
os: osx
language: c++
compiler: clang
osx_image: xcode10.1
env:
global:
- HOMEBREW_NO_AUTO_UPDATE=1
- MACOSX_DEPLOYMENT_TARGET=10.12
- QT_URL=https://github.com/kevinhendricks/BuildSigilOnMac/releases/download/for_sigil_1.0.0/Qt5126.tar.xz
- PYTHON_URL=https://github.com/kevinhendricks/BuildSigilOnMac/releases/download/for_sigil_1.0.0/Python.framework.tar.xz
- PY_VER=3.7
branches:
only:
- master
- appearance
- /\d+\.\d+\.\d+(-\d+)?/
git:
depth: 3
install:
- brew install gdrive
- brew install xz
- pwd
- cd ~
# Retrieve custom Qt
- wget $QT_URL
- tar xzf Qt5126.tar.xz
- export MYQTHOME=${HOME}/Qt5126
# Add custom Qt to path
- export PATH=${PATH}:${MYQTHOME}/bin
# macdeployqt looks for qt plugins in a hard-coded compile-time location
- sudo mkdir -p /Users/kbhend/Qt5126
- sudo chown -R travis /Users/kbhend/
- cp -R ~/Qt5126/plugins /Users/kbhend/Qt5126
# Retrieve custom Python
- mkdir Frameworks
- cd ./Frameworks
- wget $PYTHON_URL
- tar xzf Python.framework.tar.xz
- export MYDEST=${HOME}/Frameworks
# prepend custom Python to path
- export PATH=${MYDEST}/Python.framework/Versions/${PY_VER}/bin:${PATH}
script:
- cd ~/build/${TRAVIS_REPO_SLUG}
- mkdir build && cd build
- pwd
- cmake -DPKG_SYSTEM_PYTHON=1 \
-DCMAKE_OSX_DEPLOYMENT_TARGET=10.12 \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_CXX_FLAGS=-Wno-inconsistent-missing-override \
-DCMAKE_PREFIX_PATH=${MYQTHOME}/lib/cmake \
-DCMAKE_OSX_SYSROOT=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/ ../
- make -j4
- make addframeworks
- bash ../ci_scripts/rpath_adjust.sh
- cd ./bin
# Don't make the xz archive on remote PRs
- if [[ "$TRAVIS_SECURE_ENV_VARS" == true ]]; then
tar -cJf Sigil.tar.xz Sigil.app;
fi
- cd ../
after_success:
# Remote PRs won't set secure variables, so don't try to deploy
- python3 --version
- if [[ "$TRAVIS_SECURE_ENV_VARS" == true ]]; then
python3 ../ci_scripts/gddeploy.py;
fi
#deploy:
# provider: script
# script: bash ../ci_scripts/macgddeploy.sh
# skip_cleanup: true
# on:
# branch: master