mirror of
https://github.com/nextcloud/docker.git
synced 2024-11-18 02:56:42 +01:00
Allow failures on PHP 7.3 with i386
Signed-off-by: J0WI <J0WI@users.noreply.github.com>
This commit is contained in:
parent
001afbefb6
commit
15e0c3bd3e
1 changed files with 14 additions and 1 deletions
15
.travis.yml
15
.travis.yml
|
@ -5,6 +5,11 @@ branches:
|
||||||
only:
|
only:
|
||||||
- master
|
- master
|
||||||
|
|
||||||
|
# preload images to avoid timeouts in tests
|
||||||
|
before_install:
|
||||||
|
- docker pull mariadb:10
|
||||||
|
- docker pull postgres:11-alpine
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- git clone https://github.com/docker-library/official-images.git ~/official-images
|
- git clone https://github.com/docker-library/official-images.git ~/official-images
|
||||||
|
|
||||||
|
@ -20,13 +25,21 @@ script:
|
||||||
set -Eeuo pipefail
|
set -Eeuo pipefail
|
||||||
set -x
|
set -x
|
||||||
travis_retry docker build -t "$image" "${VERSION}/${VARIANT}"
|
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"
|
.travis/test-example-dockerfiles.sh "$image"
|
||||||
)
|
)
|
||||||
|
|
||||||
after_script:
|
after_script:
|
||||||
- docker images
|
- 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:
|
jobs:
|
||||||
include:
|
include:
|
||||||
- &test-scripts
|
- &test-scripts
|
||||||
|
|
Loading…
Reference in a new issue