Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit a14d8f9

Browse filesBrowse files
minor #36924 [travis] skip extensions that dont compile on nightly (nicolas-grekas)
This PR was merged into the 4.4 branch. Discussion ---------- [travis] skip extensions that dont compile on nightly | Q | A | ------------- | --- | Branch? | 4.4 | Bug fix? | no | New feature? | no | Deprecations? | no | Tickets | #36872 | License | MIT | Doc PR | - Commits ------- c26044b [travis] skip extensions that dont compile on nightly
2 parents c8c7d4c + c26044b commit a14d8f9
Copy full SHA for a14d8f9

File tree

1 file changed

+8
-7
lines changed
Filter options

1 file changed

+8
-7
lines changed

‎.travis.yml

Copy file name to clipboardExpand all lines: .travis.yml
+8-7Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -155,14 +155,15 @@ before_install:
155155
fi
156156
if [[ $PHP = nightly ]]; then
157157
tfold ext.memcached tpecl memcached-3.1.5 memcached.so $INI
158+
else
159+
tfold ext.apcu tpecl apcu-5.1.18 apcu.so $INI
160+
tfold ext.mongodb tpecl mongodb-1.6.16 mongodb.so $INI
161+
tfold ext.zookeeper tpecl zookeeper-0.7.2 zookeeper.so $INI
162+
tfold ext.amqp tpecl amqp-1.10.2 amqp.so $INI
163+
tfold ext.redis tpecl redis-5.2.2 redis.so $INI "no"
158164
fi
159165
160-
tfold ext.apcu tpecl apcu-5.1.17 apcu.so $INI
161-
tfold ext.mongodb tpecl mongodb-1.6.0 mongodb.so $INI
162166
tfold ext.igbinary tpecl igbinary-3.1.2 igbinary.so $INI
163-
tfold ext.zookeeper tpecl zookeeper-0.7.1 zookeeper.so $INI
164-
tfold ext.amqp tpecl amqp-1.9.4 amqp.so $INI
165-
tfold ext.redis tpecl redis-4.3.0 redis.so $INI "no"
166167
done
167168
- |
168169
# List all php extensions with versions
@@ -266,7 +267,7 @@ install:
266267
return
267268
fi
268269
phpenv global $PHP
269-
([[ $deps ]] && cd src/Symfony/Component/HttpFoundation; cp composer.json composer.bak; composer config platform.ext-mongodb 1.6.0; composer require --dev --no-update mongodb/mongodb ~1.5.0)
270+
([[ $deps ]] && cd src/Symfony/Component/HttpFoundation; cp composer.json composer.bak; composer config platform.ext-mongodb 1.6.99; composer require --dev --no-update mongodb/mongodb ~1.5.0)
270271
tfold 'composer update' $COMPOSER_UP
271272
tfold 'phpunit install' ./phpunit install
272273
if [[ $deps = high ]]; then
@@ -283,7 +284,7 @@ install:
283284
git fetch --depth=2 origin $SYMFONY_VERSION
284285
git checkout -m FETCH_HEAD
285286
COMPONENTS=$(echo "$COMPONENTS" | xargs dirname | xargs -n1 -I{} bash -c "[ -e '{}/phpunit.xml.dist' ] && echo '{}'" | sort)
286-
(cd src/Symfony/Component/HttpFoundation; composer config platform.ext-mongodb 1.6.0; composer require --dev --no-update mongodb/mongodb)
287+
(cd src/Symfony/Component/HttpFoundation; composer config platform.ext-mongodb 1.6.99; composer require --dev --no-update mongodb/mongodb)
287288
[[ ! $COMPONENTS ]] || tfold 'phpunit install' SYMFONY_PHPUNIT_REMOVE_RETURN_TYPEHINT=1 ./phpunit install
288289
[[ ! $COMPONENTS ]] || echo "$COMPONENTS" | parallel --gnu "tfold {} 'cd {} && rm composer.lock vendor/ -Rf && $COMPOSER_UP && $PHPUNIT_X$LEGACY'" || X=1
289290
fi

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.