build: increase npm install loglevel

The builds for npm still fail, however, `--timing` does not provide
sufficient data to debug the situation.

Change-Id: I7e618ba8cac775748ebea6145cd5c180d2dc7883
This commit is contained in:
Egon Elbre 2022-07-06 18:13:53 +03:00
parent e26b1517ed
commit d0ca258925
3 changed files with 12 additions and 12 deletions

View File

@ -54,7 +54,7 @@ pipeline {
stage('web/satellite') { stage('web/satellite') {
steps { steps {
dir('web/satellite') { dir('web/satellite') {
sh 'npm ci --prefer-offline --no-audit' sh 'npm install --prefer-offline --no-audit --loglevel verbose'
sh './scripts/build-wasm.sh' sh './scripts/build-wasm.sh'
sh 'npm run build' sh 'npm run build'
} }
@ -63,7 +63,7 @@ pipeline {
stage('web/storagenode') { stage('web/storagenode') {
steps { steps {
dir('web/storagenode') { dir('web/storagenode') {
sh 'npm ci --prefer-offline --no-audit' sh 'npm install --prefer-offline --no-audit --loglevel verbose'
sh 'npm run build' sh 'npm run build'
} }
} }
@ -71,7 +71,7 @@ pipeline {
stage('web/multinode') { stage('web/multinode') {
steps { steps {
dir('web/multinode') { dir('web/multinode') {
sh 'npm ci --prefer-offline --no-audit' sh 'npm install --prefer-offline --no-audit --loglevel verbose'
sh 'npm run build' sh 'npm run build'
} }
} }
@ -79,7 +79,7 @@ pipeline {
stage('satellite/admin/ui') { stage('satellite/admin/ui') {
steps { steps {
dir('satellite/admin/ui') { dir('satellite/admin/ui') {
sh 'npm ci --prefer-offline --no-audit' sh 'npm install --prefer-offline --no-audit --loglevel verbose'
sh 'npm run build' sh 'npm run build'
} }
} }

View File

@ -43,7 +43,7 @@ pipeline {
stage('web/satellite') { stage('web/satellite') {
steps { steps {
dir('web/satellite') { dir('web/satellite') {
sh 'npm install --prefer-offline --no-audit --loglevel timing' sh 'npm install --prefer-offline --no-audit --loglevel verbose'
sh './scripts/build-wasm.sh' sh './scripts/build-wasm.sh'
sh 'npm run build' sh 'npm run build'
} }
@ -52,7 +52,7 @@ pipeline {
stage('web/storagenode') { stage('web/storagenode') {
steps { steps {
dir('web/storagenode') { dir('web/storagenode') {
sh 'npm install --prefer-offline --no-audit --loglevel timing' sh 'npm install --prefer-offline --no-audit --loglevel verbose'
sh 'npm run build' sh 'npm run build'
} }
} }
@ -60,7 +60,7 @@ pipeline {
stage('web/multinode') { stage('web/multinode') {
steps { steps {
dir('web/multinode') { dir('web/multinode') {
sh 'npm install --prefer-offline --no-audit --loglevel timing' sh 'npm install --prefer-offline --no-audit --loglevel verbose'
sh 'npm run build' sh 'npm run build'
} }
} }
@ -68,7 +68,7 @@ pipeline {
stage('satellite/admin/ui') { stage('satellite/admin/ui') {
steps { steps {
dir('satellite/admin/ui') { dir('satellite/admin/ui') {
sh 'npm install --prefer-offline --no-audit --loglevel timing' sh 'npm install --prefer-offline --no-audit --loglevel verbose'
sh 'npm run build' sh 'npm run build'
} }
} }

View File

@ -99,7 +99,7 @@ pipeline {
} }
steps { steps {
dir('web/satellite') { dir('web/satellite') {
sh 'npm install --prefer-offline --no-audit --loglevel timing' sh 'npm install --prefer-offline --no-audit --loglevel verbose'
sh './scripts/build-wasm.sh' sh './scripts/build-wasm.sh'
sh 'npm run build' sh 'npm run build'
@ -122,7 +122,7 @@ pipeline {
} }
steps { steps {
dir("web/storagenode") { dir("web/storagenode") {
sh 'npm install --prefer-offline --no-audit --loglevel timing' sh 'npm install --prefer-offline --no-audit --loglevel verbose'
sh 'npm run build' sh 'npm run build'
sh 'npm run lint-ci' sh 'npm run lint-ci'
sh script: 'npm audit', returnStatus: true sh script: 'npm audit', returnStatus: true
@ -137,7 +137,7 @@ pipeline {
} }
steps { steps {
dir("web/multinode") { dir("web/multinode") {
sh 'npm install --prefer-offline --no-audit --loglevel timing' sh 'npm install --prefer-offline --no-audit --loglevel verbose'
sh 'npm run build' sh 'npm run build'
sh 'npm run lint-ci' sh 'npm run lint-ci'
sh script: 'npm audit', returnStatus: true sh script: 'npm audit', returnStatus: true
@ -152,7 +152,7 @@ pipeline {
} }
steps { steps {
dir("satellite/admin/ui") { dir("satellite/admin/ui") {
sh 'npm install --prefer-offline --no-audit --loglevel timing' sh 'npm install --prefer-offline --no-audit --loglevel verbose'
sh 'npm run build' sh 'npm run build'
sh script: 'npm audit', returnStatus: true sh script: 'npm audit', returnStatus: true
sh 'npm run check' sh 'npm run check'