? Success

User tests: Successful: Unsuccessful:

avatar Bakual
Bakual
18 Jul 2015

According to http://docs.travis-ci.com/user/migrating-from-legacy/?utm_source=legacy-notice&utm_medium=banner&utm_campaign=legacy-upgrade we can migrate to the new Travis infrastructure by just adding sudo: false to our .travis.yml file.

This PR does this and it indeed run a bit faster.

avatar Bakual Bakual - open - 18 Jul 2015
avatar Bakual Bakual - change - 18 Jul 2015
Status New Pending
avatar joomla-cms-bot joomla-cms-bot - change - 18 Jul 2015
Labels Added: ?
avatar Bakual
Bakual - comment - 18 Jul 2015

Last Travis runs were around 6-8 minutes. With this change it's around 4-6 minutes. So it's a bit faster :smile:

avatar mbabker
mbabker - comment - 18 Jul 2015

I did it on the 3.5-dev branch not wanting to touch staging with it yet. But if we're good with this change being applied to everything going forward, then merge it.

avatar Bakual
Bakual - comment - 18 Jul 2015

Oh, didn't even notice this. :+1:
Will adjust then to use the same code as you did in 3.5.
I think it should be fine as long as Travis passes.

avatar dgt41
dgt41 - comment - 18 Jul 2015

APCu is not available by default for PHP 5.5 and 5.6. I guess this is needed:

# +5.5 uses APCU
  - if [ "`phpenv version-name`" != "5.4" ] && [ "`phpenv version-name`" != "5.3" ] && [ "`phpenv version-name`" != "hhvm" ]; then printf "\n"| pecl install apcu-beta && echo -e "extension = apcu.so\napc.enabled=1\napc.enable_cli=1" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini; fi
avatar mbabker
mbabker - comment - 18 Jul 2015

It used to be there and at some point in Travis' updates it went away.
shrug

It's just something to deal with updating at some point.

On Saturday, July 18, 2015, Dimitris Grammatiko notifications@github.com
wrote:

APCu is not available by default for PHP 5.5 and 5.6. I guess this is
needed:

+5.5 uses APCU

  • if [ "phpenv version-name" != "5.4" ] && [ "phpenv version-name" != "5.3" ] && [ "phpenv version-name" != "hhvm" ]; then printf "\n"| pecl install apcu-beta && echo -e "extension = apcu.so\napc.enabled=1\napc.enable_cli=1" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini; fi


Reply to this email directly or view it on GitHub
#7458 (comment).

avatar Bakual Bakual - change - 18 Jul 2015
Status Pending Closed
Closed_Date 0000-00-00 00:00:00 2015-07-18 18:48:06
Closed_By Bakual
avatar Bakual Bakual - close - 18 Jul 2015
avatar Bakual Bakual - reference | 3e18574 - 18 Jul 15
avatar Bakual Bakual - merge - 18 Jul 2015
avatar Bakual Bakual - close - 18 Jul 2015
avatar Bakual Bakual - head_ref_deleted - 18 Jul 2015
avatar zero-24 zero-24 - change - 27 Jul 2015
Milestone Added:

Add a Comment

Login with GitHub to post a comment