Skip to content

Commit cc07578

Browse files
committed
travis-ci: verify Deb packages for PHP 7.0
Verify Deb packages on distributions, which provides PHP 7.0: it is Debian Stretch and Ubuntu Xenial. Now the Debian build files (debian/ directory) allow to build against PHP 7.0 only (not PHP 7.1+), because of hardcoded package name and installation paths. That is why newer Debian and Ubuntu distributions are not enabled here. It will be fixes in the following commits. Part of #117
1 parent 40d8795 commit cc07578

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

.travis.yml

+7
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,13 @@ jobs:
103103
- env: OS=fedora DIST=30
104104
- env: OS=fedora DIST=31
105105

106+
# Deb packages
107+
# ------------
108+
# Debian < 8 (Stretch) do not provide PHP 7.*.
109+
# Ubuntu < 16.04 (Xenial) do not provide PHP 7.*.
110+
- env: OS=debian DIST=stretch
111+
- env: OS=ubuntu DIST=xenial
112+
106113
python:
107114
- 2.7
108115

test.pkg.all.sh

+2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ distros="
1111
fedora:29
1212
fedora:30
1313
fedora:31
14+
debian:stretch
15+
ubuntu:xenial
1416
"
1517

1618
if ! type packpack; then

0 commit comments

Comments
 (0)