ruby-changes:39372
From: tenderlove <ko1@a...>
Date: Fri, 31 Jul 2015 23:37:01 +0900 (JST)
Subject: [ruby-changes:39372] tenderlove:r51453 (trunk): Update libssl before Travis build
tenderlove 2015-07-31 23:36:42 +0900 (Fri, 31 Jul 2015) New Revision: 51453 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=51453 Log: Update libssl before Travis build Modified files: trunk/.travis.yml trunk/ChangeLog Index: ChangeLog =================================================================== --- ChangeLog (revision 51452) +++ ChangeLog (revision 51453) @@ -1,3 +1,9 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 +Fri Jul 31 23:34:27 2015 Aaron Patterson <tenderlove@r...> + + * .travis.yml: update libssl before running tests. + Thanks to Chris Sinjakli <chris@s...> for figuring out the + travis settings! + Fri Jul 31 21:34:49 2015 Nobuyoshi Nakada <nobu@r...> * load.c (rb_require_internal): use rb_load_internal0 not to raise Index: .travis.yml =================================================================== --- .travis.yml (revision 51452) +++ .travis.yml (revision 51453) @@ -36,6 +36,8 @@ os: https://github.com/ruby/ruby/blob/trunk/.travis.yml#L36 before_install: - "CONFIG_FLAG=" - "if [[ $TRAVIS_OS_NAME = 'linux' ]]; then sudo apt-get -qq update; fi" + # Travis ships an outdated, broken version of libssl by default + - "if [[ $TRAVIS_OS_NAME = 'linux' ]]; then sudo apt-get -qq --only-upgrade install '^libssl.*'; fi" - "if [[ $TRAVIS_OS_NAME = 'linux' ]]; then sudo apt-get -qq install $CC; fi" # upgrade if any - "if [[ $TRAVIS_OS_NAME = 'linux' ]]; then JOBS='-j'; fi" - "if [[ $TRAVIS_OS_NAME = 'osx' ]]; then brew install autoconf gdbm openssl; fi" -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/