PHP 8.0 Missing

Still fails for me. I’m using 8.0.0 for now.

I’ve recreated the 8.0 archive. Please test it again.

1 Like

PHP 8.0 passed :partying_face: Thank you so much.

I dont know if you have done any work on nightly but only nightly fails.

1 Like

nightly builds do not have any third-party extensions, since they are often incompatible with the master branch. See

PHP 8.0 was important to us anyway. Thank you again.

1 Like

I still get

0.02s$ phpenv global 8.0 2>/dev/null

8.0 is not pre-installed; installing

Downloading archive: https://storage.googleapis.com/travis-ci-language-archives/php/binaries/ubuntu/14.04/x86_64/php-8.0.tar.bz2

0.05s$ curl -sSf --retry 5 -o archive.tar.bz2 $archive_url && tar xjf archive.tar.bz2 --directory /
curl: (22) The requested URL returned error: 404 Not Found
0.00s0.02s$ phpenv global 8.0
rbenv: version `8.0' not installed
The command "phpenv global 8.0" failed and exited with 1 during .

what gives?

You are using Trusty. You need to use a newer Ubuntu release.

thanks… how do I specify the the dist per php-version?
right now…

language: php
dist: trusty
php:
  - 5.4
  - 5.5
  - 5.6
  - 7.0
  - 7.1
  - 7.2
  - 7.3
  - 7.4
  - 8.0
matrix:
  fast_finish: true
  allow_failures:
    - php: 8.0
matrix:
  include:
    - php: 5.4
      dist: trusty

etc

1 Like

Thank you very much… moving to xenial also solved a mysterious php 7.4 segmentation-fault that just cropped up for unknown #reasons

two birds. one stone

1 Like