forked from OpenShot/openshot-qt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
76 lines (71 loc) · 1.75 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
# Run in default virtualenv, but with access to Python packages
# installed by apt
language: python
virtualenv:
system_site_packages: true
addons:
apt:
sources:
- sourceline: 'ppa:openshot.developers/libopenshot-daily'
packages: &p_common
- libopenshot-audio-dev
- libopenshot-dev
- libssl-dev
- python3-openshot
- python3-pip
- python3-setuptools
- python3-pyqt5
- python3-pyqt5.qtsvg
- python3-requests
- python3-xdg
- python3-zmq
- qttranslations5-l10n
- xvfb
jobs:
include:
- name: "Python 3.5 (Ubuntu 16.04 Xenial)"
os: linux
dist: xenial
python: 3.5
addons:
apt:
sources:
- sourceline: 'ppa:openshot.developers/libopenshot-daily'
packages:
- *p_common
- python3-pyqt5.qtwebkit
- name: "Python 3.6 (Ubuntu 18.04 Bionic)"
os: linux
dist: bionic
python: 3.6
addons:
apt:
sources:
- sourceline: 'ppa:openshot.developers/libopenshot-daily'
packages:
- *p_common
- python3-pyqt5.qtwebengine
- python3-pyqt5.qtopengl
- name: "Python 3.8 (Ubuntu 20.04 Focal)"
os: linux
dist: focal
python: 3.8
addons:
apt:
sources:
- sourceline: 'ppa:openshot.developers/libopenshot-daily'
packages:
- *p_common
- python3-pyqt5.qtwebengine
- python3-pyqt5.qtopengl
install:
- pip3 install 'cx-freeze==6.1'
script:
- python3 freeze.py build
- xvfb-run --auto-servernum --server-num=1 --server-args "-screen 0 1920x1080x24" python3 src/tests/query_tests.py
notifications:
email: true
env:
global:
- TRAVIS_LIBOPENSHOT=TEST
- LANG="en_US.UTF-8"