Skip to content

Commit 9c9d6df

Browse files
Add jenkinsfile and version
1 parent ca74384 commit 9c9d6df

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

jenkinsfile.groovy

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
def repository = 'hydro-serving-manager'
2+
3+
def buildFunction={
4+
sh "sbt test"
5+
sh "sbt docker"
6+
}
7+
8+
def collectTestResults = {
9+
junit testResults: '**/target/test-reports/io.hydrosphere*.xml', allowEmptyResults: true
10+
}
11+
12+
pipelineCommon(
13+
repository,
14+
false, //needSonarQualityGate,
15+
["hydrosphere/serving-manager"],
16+
collectTestResults,
17+
buildFunction,
18+
buildFunction,
19+
buildFunction,
20+
null,
21+
"",
22+
"",
23+
{},
24+
commitToCD("manager")
25+
)

version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2.0.0

0 commit comments

Comments
 (0)