mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-02-05 15:53:26 +00:00
* add jenkins mac builds * update build agent * add code signing detection in naming scheme * remove length checks * bugfixes, additional Jenkinsfiles
24 lines
513 B
Plaintext
24 lines
513 B
Plaintext
pipeline {
|
|
agent {
|
|
node {
|
|
label 'master'
|
|
}
|
|
}
|
|
stages {
|
|
stage('Build') {
|
|
environment {
|
|
ELECTRON_BUILDER_ALLOW_UNRESOLVED_DEPENDENCIES = 1
|
|
}
|
|
steps {
|
|
sh 'rm -rf node_modules'
|
|
sh 'npm install'
|
|
sh 'npm run jenkins:build:mac'
|
|
}
|
|
}
|
|
stage('Upload') {
|
|
steps {
|
|
sh 'npm run jenkins:upload'
|
|
}
|
|
}
|
|
}
|
|
} |