forked from NoiseByNorthwest/php-spx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
60 lines (60 loc) · 1.6 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
language: php
php:
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3
- 7.4
- 8.0
# PHP 8.1 support is not available yet.
# See here: https://docs.travis-ci.com/user/languages/php/
# FIXME enable PHP 8.1 ASAP
#- 8.1
arch:
- amd64
- arm64
jobs:
exclude:
- php: 5.6
arch: arm64
- php: 7.0
arch: arm64
#matrix:
# include:
# `php: ..` in here is just descriptive/for UI, they don't affect installed ver.
# FIXME PHP 5.6 & 7.0 don't work anymore
# see here for more details: https://travis-ci.org/NoiseByNorthwest/php-spx/jobs/570820077
# - os: osx
# php: "5.6"
# language: generic
# before_install:
# - brew update && brew install [email protected] && brew link --force --overwrite [email protected]
# - os: osx
# php: "7.0"
# language: generic
# before_install:
# - brew update && brew install [email protected] && brew link --force --overwrite [email protected]
# FIXME PHP 7.1+ does not work anymore
# error ex: brew update && brew install [email protected] && brew link --force --overwrite [email protected]
# see: https://travis-ci.org/NoiseByNorthwest/php-spx/jobs/449244542
# - os: osx
# php: "7.1"
# language: generic
# before_install:
# - brew update && brew install [email protected] && brew link --force --overwrite [email protected]
# - os: osx
# php: "7.2"
# language: generic
# before_install:
# - brew update && brew install [email protected] && brew link --force --overwrite [email protected]
install:
- phpize
- ./configure
- make
- make install
script:
- export NO_INTERACTION=1
- export REPORT_EXIT_STATUS=1
- export TEST_PHP_ARGS="--show-diff"
- make test