MyCrypto/jenkins/Jenkinsfile.darwin.ci
2018-04-13 11:33:49 -05:00

19 lines
312 B
Plaintext

pipeline {
agent {
node {
label 'master'
}
}
stages {
stage('Install') {
steps {
sh 'yarn'
}
}
stage('Build') {
steps {
sh 'npm run build:electron'
}
}
}
}