-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
54 lines (54 loc) · 1.57 KB
/
Jenkinsfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!groovy
node {
try {
stage('Preparação') {
cleanWs();
properties([[$class: 'BuildDiscarderProperty',
strategy: [$class: 'LogRotator',
artifactDaysToKeepStr: '30',
artifactNumToKeepStr: '15',
daysToKeepStr: '30', numToKeepStr: '10'
]
]]);
}
stage('Checkout') {
//disable to recycle workspace data to save time/bandwidth
deleteDir()
checkout scm
}
stage('Instalação Dependências') {
withEnv(["NPM_CONFIG_LOGLEVEL=warn"]) {
sh 'npm install'
}
}
stage('Construção do Código-fonte') {
sh("npm run pack-lib-prod")
}
stage('Publicação do pacote no Nexus'){
script {
def packageJSON = readJSON file: 'package.json'
def packageJSONVersion = packageJSON.version
nexusArtifactUploader(
nexusVersion: "${NEXUS_VERSION}",
protocol: "${NEXUS_PROTOCOL}",
nexusUrl: "${NEXUS_URL}",
groupId: '@ancine',
version: "${packageJSONVersion}",
repository: "${NEXUS_NPM_ANCINE_RELEASE_REPOSITORY}",
credentialsId: "${NEXUS_CREDENTIAL_ID}",
artifacts: [
[artifactId: 'dsgov-components',
file: "dist/dsgov-components/ancine-dsgov-components-${packageJSONVersion}.tgz",
type: 'tgz']
]
)
}
}
stage('Limpeza do Workspace') {
cleanWs()
}
} catch(e) {
currentBuild.result = 'FAILURE'
throw e
}
}