Skip to content

Commit

Permalink
wip: jenkinsfile
Browse files Browse the repository at this point in the history
  • Loading branch information
hacdias committed Sep 26, 2018
1 parent 1b55dbf commit 7b1502c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ci/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ def windowsStep () {
// bat yarnPath + ' config set msvs_version 2015 --global'
// install dependencies with a mutex lock
bat yarnPath + ' --mutex network'
sh 'npm run dist'

bat 'npm install'
bat 'npm run dist'
// archiveArtifacts 'out\\make\\**\\*'
cleanWs()
}
Expand All @@ -34,6 +36,7 @@ def unixStep(nodeLabel) {
checkout scm
fileExists 'package.json'
nodejs('10.4.1') {
sh 'npm install'
sh 'npm run dist'
// archiveArtifacts 'out/*'
cleanWs()
Expand Down

0 comments on commit 7b1502c

Please sign in to comment.