From 1be0f0205775cfc954983d5962cbf8777ce34858 Mon Sep 17 00:00:00 2001 From: Dimitri Fontaine Date: Thu, 9 May 2019 00:17:54 +0200 Subject: [PATCH] Attempt to get Travis back on its feet again. The current problem with Travis build is that it's using the Quicklisp version of the cl-db3 librairy rather than the current master's branch version, which current sources of pgloader depend on. In the Dockerfiles we use the alternate build method for preparing the lisp image, and invoke the `make clones` target explicitely in order to make sure that we have the right set of dependencies at build time. In this patch we apply the same approach to Travis, hoping to solve the current build issues there. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index a430f27..533f764 100644 --- a/.travis.yml +++ b/.travis.yml @@ -21,7 +21,7 @@ before_script: - PGUSER=pgloader psql -d pgloader -c "create schema expected;" - PGUSER=pgloader psql -d pgloader -c "create schema err;" - make --version - - make "CL=$LISP" + - make "CL=$LISP" clones save script: - PGUSER=pgloader make "CL=$LISP" check