From 8751d32304e4dd09c8f1dc3e4d815c998c265851 Mon Sep 17 00:00:00 2001 From: dkf Date: Tue, 2 Jul 2019 09:13:59 +0000 Subject: So... you can't directly override a script in the matrix section of .travis.yml --- .travis.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index a79bbed..20f60f0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -161,8 +161,7 @@ matrix: env: - BUILD_DIR=win - NO_DIRECT_CONFIGURE=1 - script: - - nmake -f makefile.vc test + - MAKE="nmake -f makefile.vc" before_install: - export ERROR_ON_FAILURES=1 @@ -170,6 +169,6 @@ before_install: install: - test -n "$NO_DIRECT_CONFIGURE" || ./configure ${CFGOPT} script: - - make + - ${MAKE:-make} # The styles=develop avoids some weird problems on OSX - - test -n "$NO_DIRECT_TEST" || make test styles=develop + - test -n "$NO_DIRECT_TEST" || ${MAKE:-make} test styles=develop -- cgit v0.12