8000 Switch nightly run to 8.0snapshot by derrabus · Pull Request #38967 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

Switch nightly run to 8.0snapshot #38967

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 3, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ matrix:
env: deps=high
- php: 7.4
env: deps=low
- php: nightly
- php: 8.0snapshot
services: [memcached]
fast_finish: true
allow_failures:
- php: nightly
- php: 8.0snapshot
services: [memcached]

cache:
Expand Down Expand Up @@ -140,7 +140,7 @@ before_install:
echo session.gc_probability = 0 >> $INI
echo opcache.enable_cli = 1 >> $INI
echo apc.enable_cli = 1 >> $INI
if [[ $PHP != nightly ]]; then
if [[ $PHP != 8.* ]]; then
echo extension = memcached.so >> $INI
fi
done
Expand All @@ -156,7 +156,7 @@ before_install:
if ! php --ri sodium > /dev/null; then
tfold ext.libsodium tpecl libsodium sodium.so $INI
fi
if [[ $PHP = nightly ]]; then
if [[ $PHP = 8.* ]]; then
tfold ext.memcached tpecl memcached-3.1.5 memcached.so $INI
else
tfold ext.mongodb tpecl mongodb-1.6.16 mongodb.so $INI
Expand Down Expand Up @@ -234,7 +234,7 @@ install:

- |
# Set composer's platform to php 7.4 if we're on php 8.
if [[ $PHP = nightly ]]; then
if [[ $PHP = 8.* ]]; then
composer config platform.php 7.4.99
export SYMFONY_DEPRECATIONS_HELPER=max[total]=999
fi
Expand Down
0