forked from clalancette/pycdlib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
86 lines (86 loc) · 1.86 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
81
82
83
84
85
86
language: python
jobs:
include:
- os: linux
dist: xenial
arch: amd64
python: 2.7
env: SYSLINUX=1
- os: linux
dist: xenial
arch: amd64
python: 3.4
env: SYSLINUX=1
- os: linux
dist: xenial
arch: amd64
python: 3.5
env: SYSLINUX=1
- os: linux
dist: xenial
arch: amd64
python: 3.6
env: SYSLINUX=1
- os: linux
dist: xenial
arch: amd64
python: 3.7
env: SYSLINUX=1
- os: linux
dist: bionic
arch: amd64
python: 2.7
env: SYSLINUX=1
- os: linux
dist: bionic
arch: amd64
python: 3.5
env: SYSLINUX=1
- os: linux
dist: bionic
arch: amd64
python: 3.6
env: SYSLINUX=1
- os: linux
dist: bionic
arch: amd64
python: 3.7
env: SYSLINUX=1
- os: linux
dist: bionic
arch: s390x
python: 2.7
- os: linux
dist: bionic
arch: s390x
python: 3.4
- os: linux
dist: bionic
arch: s390x
python: 3.5
- os: linux
dist: bionic
arch: s390x
python: 3.6
- os: linux
dist: bionic
arch: s390x
python: 3.7
before_install:
- sudo apt-get update
- sudo apt-get install -y cmake flake8 git-lfs libbz2-dev libcap-dev libcdio-utils util-linux zlib1g-dev
- if [ "$SYSLINUX" == "1" ]; then sudo apt-get install -y syslinux-utils ; fi
- git lfs pull
- pushd vendor
- tar -xvf cdrkit-1.1.11-fedora29-patched.tar.gz
- pushd cdrkit-1.1.11
- mkdir build
- pushd build
- cmake ..
- make
- popd
- popd
- popd
script:
- flake8 --ignore=E501,E266 pycdlib tools/*
- PATH=vendor/cdrkit-1.1.11/build/genisoimage:$PATH LD_LIBRARY_PATH=vendor/cdrkit-1.1.11/build/libusal/:vendor/cdrkit-1.1.11/build/librols:$LD_LIBRARY_PATH PYCDLIB_TRACK_WRITES=1 py.test --verbose tests