summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorJ0WI <J0WI@users.noreply.github.com>2019-06-17 19:48:58 +0200
committerJ0WI <J0WI@users.noreply.github.com>2019-06-17 19:48:58 +0200
commit15e0c3bd3ef62887a111f23b1e3a60d784b67795 (patch)
tree6806eb5cd9ffa84a7342b8e0bbfc634817b79c15 /.travis.yml
parent001afbefb6674d86ed2fb5d8f1cb561e82dc8b86 (diff)
Allow failures on PHP 7.3 with i386
Signed-off-by: J0WI <J0WI@users.noreply.github.com>
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml15
1 files changed, 14 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 00485317..0db3d747 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -5,6 +5,11 @@ branches:
only:
- master
+# preload images to avoid timeouts in tests
+before_install:
+ - docker pull mariadb:10
+ - docker pull postgres:11-alpine
+
install:
- git clone https://github.com/docker-library/official-images.git ~/official-images
@@ -20,13 +25,21 @@ script:
set -Eeuo pipefail
set -x
travis_retry docker build -t "$image" "${VERSION}/${VARIANT}"
- ~/official-images/test/run.sh "$image"
+ travis_retry ~/official-images/test/run.sh "$image"
.travis/test-example-dockerfiles.sh "$image"
)
after_script:
- docker images
+# https://github.com/docker-library/php/issues/822
+matrix:
+ allow_failures:
+ - env: ARCH=i386
+ - env: VARIANT=apache
+ env: VERSION=15.0
+ env: VERSION=16.0
+
jobs:
include:
- &test-scripts