[fix] Building the dictionaries/numex table, etc. locally on clang, just not publishing unless it's gcc

This commit is contained in:
Al
2016-03-29 11:35:02 -04:00
parent 1bc92d6995
commit 8e16ad245f

View File

@@ -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:
- |