forked from messagebird/beanstalkd_exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
25 lines (25 loc) · 939 Bytes
/
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
#!/usr/bin/env groovy
// Centralize Jenkins Pipelines configuration using Shared Libraries
// https://github.com/AfterShip/deployment-jenkins-pipeline-library-ci-aftership-org
@Library("jenkins-pipeline-library@automation") _
entry {
isDryRun = false
flow = "golang"
ci_only = true
configInfo = [
deploymentGroup : "postmen",
appName : "beanstalkd-exporter",
gitRepoName : "beanstalkd-exporter.git",
chartName : "worker",
essentialDockerImage : "golang-essential",
essentialTag : "golang-1.13.5",
requireStaticAsset : false,
uploadAssetCredential : "",
unitTest : "",
integrationTest : "",
useEnvironmentVariable : true,
hasReleaseEnvironment : false,
hasStagingEnvironment : false,
hasProductionEnvironment : true,
]
}