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
4 changes: 2 additions & 2 deletions system-test/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function timeout_after() {
}

npm_install() {
timeout_after 60 npm install "${@}"
timeout_after 60 npm install --quiet "${@}"
}

set -eox pipefail
Expand All @@ -33,7 +33,7 @@ retry npm_install --nodedir="$NODEDIR" \
${BINARY_HOST:+--pprof_binary_host_mirror=$BINARY_HOST} >/dev/null

npm run compile
npm pack >/dev/null
npm pack --quiet
VERSION=$(node -e "console.log(require('./package.json').version);")
PROFILER="$PWD/pprof-$VERSION.tgz"

Expand Down
2 changes: 1 addition & 1 deletion tools/build/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ BASE_DIR=$PWD
ARTIFACTS_OUT="${BASE_DIR}/artifacts"
mkdir -p "$ARTIFACTS_OUT"

npm install
npm install --quiet

for version in 8.0.0 10.0.0 11.0.0 12.0.0
do
Expand Down
2 changes: 1 addition & 1 deletion tools/publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ cd $(dirname $0)/..
NPM_TOKEN=$(cat $KOKORO_KEYSTORE_DIR/72935_pprof-npm-token)
echo "//wombat-dressing-room.appspot.com/:_authToken=${NPM_TOKEN}" > ~/.npmrc

retry npm install
retry npm install --quiet
npm publish --access=public \
--registry=https://wombat-dressing-room.appspot.com