diff --git a/Makefile b/Makefile index dbb345473ec..c52e707c4b1 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ deps-go: go run build.go setup deps-js: - yarn install --pure-lockfile + yarn install --pure-lockfile --no-progress deps: deps-go deps-js diff --git a/appveyor.yml b/appveyor.yml index 30ccabb38d7..d0c1bfb0eaa 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -13,7 +13,7 @@ install: # install nodejs and npm - ps: Install-Product node $env:nodejs_version - npm install -g yarn - - yarn install --pure-lockfile + - yarn install --pure-lockfile --no-progress - npm install -g grunt-cli - appveyor DownloadFile https://storage.googleapis.com/golang/go%GOVERSION%.windows-amd64.zip - 7z x go%GOVERSION%.windows-amd64.zip -y -oC:\ > NUL diff --git a/scripts/build/build.sh b/scripts/build/build.sh index 9674c8a0b8c..6e1b2cbe5b9 100755 --- a/scripts/build/build.sh +++ b/scripts/build/build.sh @@ -31,7 +31,7 @@ else go run build.go -buildNumber=${CIRCLE_BUILD_NUM} build fi -yarn install --pure-lockfile +yarn install --pure-lockfile --no-progress source /etc/profile.d/rvm.sh rvm use 2.1.9 --default diff --git a/scripts/circle-test.sh b/scripts/circle-test.sh index 726ba528363..7b1b0c6ca30 100755 --- a/scripts/circle-test.sh +++ b/scripts/circle-test.sh @@ -14,7 +14,7 @@ cd /home/ubuntu/.go_workspace/src/github.com/grafana/grafana rm -rf node_modules npm install -g yarn -yarn install --pure-lockfile +yarn install --pure-lockfile --no-progress exit_if_fail npm test