From 3d91d3377e43dce981606a3b878563091e219c8b Mon Sep 17 00:00:00 2001 From: Kaushal Modi Date: Mon, 9 Apr 2018 17:28:19 -0400 Subject: [PATCH] Don't run "make doc" on Travis Travis does not like getJSON command in Hugo, and fails. Netlify/Travis: 1/0 --- .travis.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index faf8c7f..a476fa2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -21,7 +21,9 @@ install: - export EMACS=/tmp/emacs/bin/emacs - $EMACS --version script: - - make --no-print-directory doc EMACS=${EMACS} # Just ensure that "make doc" doesn't fail for any reason.. this is *not* used to do Org->Markdown doc conversion using Travis. + # Don't run "make doc" on travis; it's finicky + # and fails on running the getJSON command in hugo. + # - make --no-print-directory doc EMACS=${EMACS} # Just ensure that "make doc" doesn't fail for any reason.. this is *not* used to do Org->Markdown doc conversion using Travis. - make --no-print-directory test EMACS=${EMACS} - make --no-print-directory vcheck EMACS=${EMACS} notifications: