Chapter 14: Circle CI UI Logging and Debugging

  1. The API Endpoint was POST https://circleci.com/api/v1.1/project/:vcs-type/:username/:project/follow?circle-token=:token.
  2. Yes the cat utility can be used to create new files you can do the following:
cat > somefile# inputinputPress Control D
  1. You would use the vertical Pipe operator (|) to create a multi-line command like this for example:
- run:    name: Run Tests and Run Code Coverage with NYC    command: |        echo "Generate Code Coverage"        npm test        echo "Show the coverage"        npm run coverage# or simply- run: |    echo "Generate Code Coverage"    npm test    echo "Show the coverage"    npm run coverage
  1. Yes if you run the set -x option in a script and are setting secrets they may leak into standard output so  ...

Get Hands-On Continuous Integration and Delivery now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.