Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@ 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)

- travis_wait 15 bash -c './node_modules/.bin/hugo --environment $TRAVIS_BRANCH 2>&1 | tee -a $TRAVIS_BUILD_DIR/hugo.log'
# bash -o pipefail ensures Hugo's non-zero exit code is not masked by tee inside the subprocess
- travis_wait 15 bash -o pipefail -c './node_modules/.bin/hugo --environment $TRAVIS_BRANCH 2>&1 | tee -a $TRAVIS_BUILD_DIR/hugo.log'

# normal htmltest takes too much memory - using a modified version which strips <aside> tag content
# NB - Set pipefail so that Travis CI sees the return code from `tee` and not from `htmltest` so it will always build.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ The Private Mendix Platform Project API allows you to manage pipelines in Privat

### Version 1

{{< swaggerui src="/openapi-spec/openapi-pipeline-v1.yaml" >}}
{{< swaggerui src="/openapi-spec/openapi-pipeline-v1.yaml" >}}
Loading