-
Notifications
You must be signed in to change notification settings - Fork 2
/
.travis.yml
45 lines (36 loc) · 1.09 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
dist: xenial
addons:
apt:
packages:
- ant-optional
language: php
php:
- '7.4'
- '7.3'
- '7.2'
env:
- SYMFONY_VERSION='^5.0'
- SYMFONY_VERSION='^4.0'
- SYMFONY_VERSION='^3.0'
sudo: false
before_script:
- echo "memory_limit=-1" >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini
- travis_retry composer self-update && composer --version
- travis_retry composer require symfony/finder ${SYMFONY_VERSION} --no-update
- travis_retry composer require symfony/filesystem ${SYMFONY_VERSION} --no-update
- >
if [ "x${TRAVIS_TAG}" != "x" ]; then
COMPOSER_ROOT_VERSION=${TRAVIS_TAG} travis_retry composer update --prefer-dist --no-interaction;
else
COMPOSER_ROOT_VERSION=$([[ ${TRAVIS_BRANCH} =~ hotfix/([0-9.]*(-(alpha|beta|rc)[0-9]+)?) ]] \
&& echo ${BASH_REMATCH[1]} \
|| echo dev-${TRAVIS_BRANCH}) \
travis_retry composer update --prefer-dist --no-interaction;
fi
script: ant -keep-going
# Hack to make things work again - we can not use a shallow repository.
git:
depth: 2147483647
cache:
directories:
- vendor