Merge pull request #2 from rbkmoney/ft/erlang/release

MSPF-544: Generate erlang release
This commit is contained in:
Sergey Yelin 2020-09-04 17:23:07 +03:00 committed by GitHub
commit 91b6e967e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 31 additions and 18 deletions

36
Jenkinsfile vendored
View File

@ -2,25 +2,25 @@
// -*- mode: groovy -*-
build('pstds-proto', 'docker-host') {
checkoutRepo()
loadBuildUtils()
checkoutRepo()
loadBuildUtils()
def pipeDefault
def gitUtils
runStage('load pipeline') {
env.JENKINS_LIB = "build_utils/jenkins_lib"
pipeDefault = load("${env.JENKINS_LIB}/pipeDefault.groovy")
pipeJavaProto = load("${env.JENKINS_LIB}/pipeJavaProto.groovy")
gitUtils = load("${env.JENKINS_LIB}/gitUtils.groovy")
def pipeDefault
def gitUtils
runStage('load pipeline') {
env.JENKINS_LIB = "build_utils/jenkins_lib"
pipeDefault = load("${env.JENKINS_LIB}/pipeDefault.groovy")
pipeJavaProto = load("${env.JENKINS_LIB}/pipeJavaProto.groovy")
gitUtils = load("${env.JENKINS_LIB}/gitUtils.groovy")
}
pipeDefault() {
runStage('compile') {
sh "make wc_compile"
}
pipeDefault() {
runStage('compile') {
sh "make wc_compile"
}
env.skipSonar = 'true'
pipeJavaProto()
}
env.skipSonar = 'true'
pipeJavaProto()
}
}

13
src/pstds_proto.app.src Normal file
View File

@ -0,0 +1,13 @@
{application, pstds_proto,
[{description, "Payment System Token Data Storage"},
{vsn, "0.1.0"},
{registered, []},
{applications,
[kernel,
stdlib
]},
{env,[]},
{modules, []},
{licenses, ["Apache 2.0"]}
]}.