diff options
author | Wu Xiaotian <[email protected]> | 2019-06-22 18:24:16 +0800 |
---|---|---|
committer | raveit65 <[email protected]> | 2022-07-20 18:36:00 +0200 |
commit | 6c800cde0cee8ba740b5aa5bbfaa3df5eaab2e79 (patch) | |
tree | 405163e4b53dcd72a7e1b472b20f79c904f2a787 | |
parent | fb210d73fc089a3fbbbf553adf491cffe7eb2159 (diff) | |
download | caja-6c800cde0cee8ba740b5aa5bbfaa3df5eaab2e79.tar.bz2 caja-6c800cde0cee8ba740b5aa5bbfaa3df5eaab2e79.tar.xz |
[ci] dont include gmo files in tarball
-rw-r--r-- | .travis.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 91913c8e..f47e44d4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -188,9 +188,10 @@ build_scripts: # - bash ./fedora.sh # - fi - ./autogen.sh + - sed -i 's/$(POFILES) $(GMOFILES) \\/$(POFILES) \\/' po/Makefile.in.in - scan-build $CHECKERS ./configure - if [ $CPU_COUNT -gt 1 ]; then - - scan-build $CHECKERS --keep-cc -o html-report make -j $CPU_COUNT + - scan-build $CHECKERS --keep-cc -o html-report make -j $(( CPU_COUNT + 1 )) - else - scan-build $CHECKERS --keep-cc -o html-report make - fi |