From 8e16ad245f5d457b788b82cdb85f6f5221420c7f Mon Sep 17 00:00:00 2001 From: Al Date: Tue, 29 Mar 2016 11:35:02 -0400 Subject: [PATCH] [fix] Building the dictionaries/numex table, etc. locally on clang, just not publishing unless it's gcc --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index c0f163be..d8cae97e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -33,9 +33,9 @@ install: script: - ./configure --datadir=$(pwd)/data - make - - if [[ "$CC" == gcc* && $DICTIONARIES_CHANGED -ne 0 ]]; then ./src/build_address_dictionary; fi; - - if [[ "$CC" == gcc* && $NUMEX_CHANGED -ne 0 ]]; then ./src/build_numex_table; fi; - - if [[ "$CC" == gcc* && $TRANSLIT_CHANGED -ne 0 ]]; then ./src/build_trans_table; fi; + - if [[ $DICTIONARIES_CHANGED -ne 0 ]]; then ./src/build_address_dictionary; fi; + - if [[ $NUMEX_CHANGED -ne 0 ]]; then ./src/build_numex_table; fi; + - if [[ $TRANSLIT_CHANGED -ne 0 ]]; then ./src/build_trans_table; fi; - make check after_success: - |