From ae4c61498116df41ee936e792b3852bd11745f13 Mon Sep 17 00:00:00 2001 From: Thibault Charbonnier Date: Wed, 8 May 2019 10:37:18 -0700 Subject: [PATCH] chore(travis) specify trusty dist and pin LuaSec version This is to avoid an issue with the Xenial dist described here: https://travis-ci.community/t/oracle-jdk-11-and-10-are-pre-installed-not-the-openjdk-builds/785/16 LuaSec 0.6 is pinned to avoid using the latest release which isn't compatible with OpenSSL 1.0.1 anymore. From #130 --- .ci/setup_env.sh | 6 +++--- .travis.yml | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.ci/setup_env.sh b/.ci/setup_env.sh index 3d04c31..ea0b283 100755 --- a/.ci/setup_env.sh +++ b/.ci/setup_env.sh @@ -1,5 +1,7 @@ set -e +openssl version + # ----------- # Install ccm # ----------- @@ -105,9 +107,7 @@ else fi # init_by_lua + plain Lua dependencies -luarocks install luasec +luarocks install luasec 0.6 luarocks install luasocket luarocks install luacov luarocks install luacov-coveralls - -luarocks --version diff --git a/.travis.yml b/.travis.yml index dc4916a..972dee5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,5 @@ sudo: false +dist: trusty language: java