This repository was archived by the owner on Mar 4, 2020. It is now read-only.
File tree 2 files changed +4
-8
lines changed
2 files changed +4
-8
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
language : php
2
- sudo : false
3
- dist : trusty
2
+ dist : xenial
4
3
5
4
php :
6
5
- ' 5.6'
16
15
- BROWSER_NAME="htmlunit"
17
16
- SELENIUM_SERVER="https://selenium-release.storage.googleapis.com/3.14/selenium-server-standalone-3.14.0.jar" # Latest version including HtmlUnit
18
17
18
+ services :
19
+ - xvfb
20
+
19
21
matrix :
20
22
include :
21
23
# Codestyle check build
@@ -24,7 +26,6 @@ matrix:
24
26
env : CHECK_CODESTYLE=1
25
27
before_install :
26
28
- phpenv config-rm xdebug.ini
27
- - phpenv config-add .travis-php74.ini
28
29
before_script : ~
29
30
script :
30
31
- composer require phpstan/phpstan # Not part of require-dev, because it won't install on PHP 5.6
@@ -132,9 +133,6 @@ cache:
132
133
directories :
133
134
- $HOME/.composer/cache
134
135
135
- before_install :
136
- - if [ "$TRAVIS_PHP_VERSION" == "7.4" ]; then phpenv config-add .travis-php74.ini; fi
137
-
138
136
install :
139
137
- travis_retry composer self-update
140
138
- travis_retry composer update --no-interaction $DEPENDENCIES
@@ -149,7 +147,6 @@ before_script:
149
147
fi
150
148
- if [ "$BROWSER_NAME" = "chrome" ]; then export CHROMEDRIVER_PATH=$PWD/chromedriver/chromedriver; fi
151
149
- if [ "$GECKODRIVER" = "1" ]; then mkdir -p geckodriver; wget -q -t 3 https://github.com/mozilla/geckodriver/releases/download/v0.26.0/geckodriver-v0.26.0-linux64.tar.gz; tar xzf geckodriver-v0.26.0-linux64.tar.gz -C geckodriver; fi
152
- - sh -e /etc/init.d/xvfb start # TODO: start only when needed (ie. not in headless mode)
153
150
- if [ ! -f jar/selenium-server-standalone.jar ] && [ -n "$SELENIUM_SERVER" ]; then
154
151
mkdir -p jar;
155
152
if [ "$SELENIUM_SERVER" = "legacy" ]; then
You can’t perform that action at this time.
0 commit comments