Skip to content

Commit 12fe380

Browse files
committed
Fix the configuration of the PHP 5.3 job on precise
Env variables defined as matrix are not merged with the job env variables of the matrix. We need to use global env variables (which we can still override in a specific job if needed).
1 parent 391cf14 commit 12fe380

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ cache:
99
php: [5.4, 5.5, 5.6, 7.0, 7.1, 7.2]
1010

1111
env:
12-
- WEBDRIVER=selenium
12+
global:
13+
- WEBDRIVER=selenium
1314

1415
matrix:
1516
fast_finish: true

0 commit comments

Comments
 (0)