We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca74384 commit 9c9d6dfCopy full SHA for 9c9d6df
jenkinsfile.groovy
@@ -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
19
20
+ null,
21
+ "",
22
23
+ {},
24
+ commitToCD("manager")
25
+)
version
@@ -0,0 +1 @@
+2.0.0
0 commit comments