diff --git a/.travis.yml b/.travis.yml index 66aaa9309ec..cbad6d035ef 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,6 @@ language: node_js node_js: - - 24.15 # latest LTS version ('node' will give latest version, 'lts/*' will give LTS version ) + - 24.15 # latest LTS version ('node' will give latest version, 'lts/*' will give LTS version ) arch: amd64 # optional, this is default, routes to a full VM # arch: arm64 # this is the recommended LXD container - faster spin up but some limitations Not used as it seems very unstable. os: linux # optional, this is default @@ -46,7 +46,7 @@ cache: before_install: ############### # Hugo, Docsy and dependencies are installed via npm - - travis_retry npm install # use npm rather than yarn - HUGO doesn't have that many dependencies + - travis_retry npm install --loglevel verbose # use npm rather than yarn - HUGO doesn't have that many dependencies # # Currently will use custom version of htmltest stored in /htmltest/htmltest # This version makes the html.Parse much smaller @@ -69,7 +69,9 @@ install: # Append output to hugo.log file to print at the end of the travis job # (see https://stackoverflow.com/questions/418896/how-to-redirect-output-to-a-file-and-stdout) - - ./node_modules/.bin/hugo --environment $TRAVIS_BRANCH 2>&1 | tee -a $TRAVIS_BUILD_DIR/hugo.log + - echo $(date) | tee -a $TRAVIS_BUILD_DIR/hugo.log + - ./node_modules/.bin/hugo --environment $TRAVIS_BRANCH --logLevel debug 2>&1 | tee -a $TRAVIS_BUILD_DIR/hugo.log + - echo $(date) | tee -a $TRAVIS_BUILD_DIR/hugo.log # normal htmltest takes too much memory - using a modified version which strips