Skip to content

Commit

Permalink
Migrate to tekton
Browse files Browse the repository at this point in the history
  • Loading branch information
GreenRover committed May 30, 2023
1 parent 8b6023f commit 6f94140
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 41 deletions.
4 changes: 0 additions & 4 deletions Jenkinsfile

This file was deleted.

37 changes: 0 additions & 37 deletions estaCloudPipeline.json

This file was deleted.

53 changes: 53 additions & 0 deletions estaTektonPipeline.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@

{
"$schema": "https://clew-resources.sbb-cloud.net/tekton-schema.json",
"productName": "spring-boot-starter-request-reply",
"mvn": {
"parentPom": "pom.xml",
"deployableArtifactsPom": "pom.xml"
},
"pipelines": [
{
"name": "continuous",
"triggerType": [
"GITEVENT",
"USER"
],
"branchNamePrefixes": [
"master",
"feature"
],
"build": {
"buildDockerImage": false,
"deployDockerImage": false,
"sonarScan": {
"enabled": true
}
},
"stages": []
},
{
"name": "release",
"triggerType": [
"GITEVENT"
],
"versionTagEventPatterns": [
"^(\\d+\\.)?(\\d+\\.)?(\\*|\\d+)$"
],
"build": {
"buildDockerImage": false
},
"stages": [
"dev"
]
}
],
"notifications": [
{
"type": "EMAIL",
"eventTypes": ["FAILURE"],
"recipients": ["$actor"]
}
],
"stages": []
}

0 comments on commit 6f94140

Please sign in to comment.