Skip to content

Commit

Permalink
[build] run npm install instead of npm ci when compiling native m…
Browse files Browse the repository at this point in the history
…odules on windows

this is a workaround to fix #3982
  • Loading branch information
johnbotris committed Mar 23, 2022
1 parent fa2f7bf commit 830148e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Desktop.Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ pipeline {
label 'win-native'
}
steps {
bat 'npm ci'
bat 'npm install'
bat "node buildSrc\\nativeLibraryProvider.js keytar --force-rebuild --root-dir ${WORKSPACE}"
bat "node buildSrc\\nativeLibraryProvider.js better-sqlite3 --copy-target better_sqlite3 --force-rebuild --root-dir ${WORKSPACE}"
stash includes: 'native-cache/**/*', name: 'native_modules'
Expand Down

0 comments on commit 830148e

Please sign in to comment.