@toptal/davinci-ci 6.0.1-alpha-fx-4497-storybook-13e9f909.10 → 6.0.1-alpha-test-rsbuild-adoption-9be50244.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toptal/davinci-ci",
3
- "version": "6.0.1-alpha-fx-4497-storybook-13e9f909.10+13e9f909",
3
+ "version": "6.0.1-alpha-test-rsbuild-adoption-9be50244.21+9be50244",
4
4
  "keywords": [
5
5
  "ci",
6
6
  "docker",
@@ -30,7 +30,7 @@
30
30
  "dependencies": {
31
31
  "@commitlint/cli": "^17.6.7",
32
32
  "@commitlint/config-conventional": "^17.1.0",
33
- "@toptal/davinci-cli-shared": "2.3.10-alpha-fx-4497-storybook-13e9f909.17+13e9f909",
33
+ "@toptal/davinci-cli-shared": "2.3.10-alpha-test-rsbuild-adoption-9be50244.28+9be50244",
34
34
  "chalk": "^4.1.2",
35
35
  "danger": "^11.2.2",
36
36
  "markdown-table": "^2.0.0"
@@ -41,5 +41,5 @@
41
41
  "publishConfig": {
42
42
  "access": "public"
43
43
  },
44
- "gitHead": "13e9f90933d497c40927286cb86609ab680489a0"
44
+ "gitHead": "9be50244ed16c5996dce47a00e4fddb80a1acbf6"
45
45
  }
@@ -74,6 +74,8 @@ pipeline {
74
74
  chart = 'davinci-app'
75
75
  }
76
76
 
77
+ set_env = params.ENV == "" ? "" : "--set ${params.ENV}"
78
+
77
79
  sh """
78
80
  export HELM_EXPERIMENTAL_OCI=1
79
81
 
@@ -98,8 +100,7 @@ pipeline {
98
100
  --set davinci-app.image.repository=${params.DOCKER_REGISTRY}/${params.REPOSITORY_NAME}${params.IS_RELEASE} \
99
101
  --set davinci-app.nameOverride=${params.REPOSITORY_NAME} \
100
102
  --set-string davinci-app.image.tag=${params.TAG} \
101
- --set ${params.ENV} \
102
- ${params.RELEASE} charts/${chart}
103
+ ${set_env} ${params.RELEASE} charts/${chart}
103
104
  then
104
105
  echo "\nHelm deploy succeeded!\n"
105
106
 
@@ -1,28 +0,0 @@
1
- ARG VERSION
2
- ARG REPO_NAME
3
-
4
- FROM gcr.io/toptal-hub/${REPO_NAME}:${VERSION} as builder
5
-
6
- FROM nginx:alpine
7
-
8
- ARG ENV_RUNTIME_ENTRYPOINT
9
-
10
- COPY --from=builder /app/dist /usr/share/nginx/html
11
- COPY --from=builder /app/node_modules/@toptal/davinci-ci/src/configs/docker/nginx-vhost.conf /etc/nginx/conf.d/default.conf
12
-
13
- # Remove source maps from the production build
14
- RUN find /usr/share/nginx/html -name "*.map" -type f -delete
15
-
16
- # Copy the entrypoint to prepare env variables
17
- # example davinci/packages/ci/scr/configs/docker/env-runtime.entrypoint.sh
18
- COPY ${ENV_RUNTIME_ENTRYPOINT} /usr/local/bin/env-runtime.entrypoint.sh
19
-
20
- # version is used in build process, so the value won't be available here otherwise
21
- ARG VERSION
22
- ENV DAVINCI_RELEASE_VERSION $VERSION
23
-
24
- RUN echo $VERSION > /usr/share/nginx/html/REVISION.txt
25
-
26
- ENTRYPOINT ["/usr/local/bin/env-runtime.entrypoint.sh"]
27
-
28
- CMD ["nginx", "-g", "daemon off;"]
@@ -1,154 +0,0 @@
1
- @Library('globalLibrary@master') _
2
-
3
- ghHelper = new helpers.GithubNotifyHelper()
4
- helper = new helpers.Helpers()
5
-
6
- release_docker_image = null
7
-
8
- repositoryName = REPOSITORY_NAME
9
- repositorySSHUrl = "git@github.com:toptal/${repositoryName}.git"
10
- releaseImageName = "${repositoryName}-release"
11
- env.REPO_NAME_FOR_COMMIT = "toptal/${repositoryName}"
12
-
13
- pipeline {
14
- agent { label 'slave_aws' }
15
-
16
- options {
17
- ansiColor('xterm')
18
- timestamps()
19
- timeout(time: 15, unit: 'MINUTES')
20
- buildDiscarder(logRotator(daysToKeepStr: '5'))
21
- skipDefaultCheckout()
22
- }
23
-
24
- parameters {
25
- string(name: 'BRANCH', defaultValue: 'master', description: 'Branch or tag to build')
26
- string(name: 'DAVINCI_BRANCH', defaultValue: 'master', description: 'Davinci branch')
27
- string(name: 'IMAGE_TAG', description: 'Docker tag of the image with dist folder which we are going to deploy')
28
- string(name: 'ALIAS_IMAGE_TAGS', defaultValue: "", description: 'Comma separated list of alias tags for the created docker image. Ex: "master,latest"')
29
- string(name: 'REPOSITORY_NAME', description: 'Repository name')
30
- }
31
-
32
- environment {
33
- GCE_ACCOUNT_KEY = credentials('jenkins-storage-administrator')
34
- }
35
-
36
- stages {
37
- stage('Git checkouts') {
38
- parallel {
39
-
40
- stage('Git checkout project') {
41
- steps {
42
- dir(repositoryName) {
43
- info "== Checking out ${BRANCH} =="
44
- gitCheckout(
45
- branches: BRANCH,
46
- credentials: [username: 'toptal-build', description: "toptal-build-ssh-key"],
47
- url: repositorySSHUrl,
48
- additionalBehaviours: [
49
- cleanBeforeCheckout: true
50
- ])
51
- script { env.COMMIT_FOR_ANVIL = gitCommit() }
52
- success "== Checked out ${BRANCH} at ${gitCommit()}"
53
- }
54
- }
55
- } //checkout project
56
-
57
- stage('Git checkout davinci') {
58
- steps {
59
- dir('davinci') {
60
- info "== Checking out davinci=="
61
- gitCheckout(
62
- branches: DAVINCI_BRANCH,
63
- credentials: [username: 'toptal-build', description: "toptal-build-ssh-key"],
64
- url: 'git@github.com:toptal/davinci.git',
65
- additionalBehaviours: [
66
- cleanBeforeCheckout: true,
67
- ])
68
- success "== Checked out"
69
- }
70
- }
71
- } //checkout davinci
72
-
73
- } // parallel
74
- } //checkout
75
-
76
- stage('Build docker image') {
77
- steps {
78
- info "== Building new docker image"
79
- script {
80
- sh "gcloud auth activate-service-account --key-file=$GCE_ACCOUNT_KEY"
81
- sh "cp ./davinci/packages/ci/src/configs/docker/env-runtime.entrypoint.sh ./${repositoryName}/env-runtime.entrypoint.sh"
82
-
83
- if (!isDockerImagePresentRemotely("gcr.io/toptal-hub/${releaseImageName}", IMAGE_TAG)) {
84
- release_docker_image = docker.build(
85
- "gcr.io/toptal-hub/${releaseImageName}:${IMAGE_TAG}",
86
- """-f ./davinci/packages/ci/src/configs/docker/Dockerfile.release \
87
- --build-arg REPO_NAME=${repositoryName} \
88
- --build-arg VERSION=${IMAGE_TAG} \
89
- --build-arg ENV_RUNTIME_ENTRYPOINT=./env-runtime.entrypoint.sh \
90
- ./${repositoryName}"""
91
- )
92
- success "== Built '${releaseImageName}' image for version ${IMAGE_TAG} =="
93
- } else {
94
- success "== Found '${releaseImageName}' image for version ${IMAGE_TAG} =="
95
- }
96
-
97
- if (!isDockerImagePresentRemotely("us-central1-docker.pkg.dev/toptal-hub/containers/${releaseImageName}", IMAGE_TAG)) {
98
- release_docker_image = docker.build(
99
- "us-central1-docker.pkg.dev/toptal-hub/containers/${releaseImageName}:${IMAGE_TAG}",
100
- """-f ./davinci/packages/ci/src/configs/docker/Dockerfile.release \
101
- --build-arg REPO_NAME=${repositoryName} \
102
- --build-arg VERSION=${IMAGE_TAG} \
103
- --build-arg ENV_RUNTIME_ENTRYPOINT=./env-runtime.entrypoint.sh \
104
- ./${repositoryName}"""
105
- )
106
- success "== Built '${releaseImageName}' image for version ${IMAGE_TAG} =="
107
- } else {
108
- success "== Found '${releaseImageName}' image for version ${IMAGE_TAG} =="
109
- }
110
- }
111
- } //steps
112
-
113
- post {
114
- always {
115
- sh "rm ./${repositoryName}/env-runtime.entrypoint.sh"
116
- }
117
- }
118
- } //stage
119
-
120
- stage('Push docker image for release') {
121
- steps {
122
- script {
123
- if (release_docker_image) {
124
- docker.withRegistry('https://gcr.io/toptal-hub/') {
125
- release_docker_image.push(IMAGE_TAG)
126
- if(ALIAS_IMAGE_TAGS) {
127
- ALIAS_IMAGE_TAGS.split(',').each { aliasImageTag ->
128
- release_docker_image.push(aliasImageTag)
129
- }
130
- }
131
- }
132
- docker.withRegistry('us-central1-docker.pkg.dev/toptal-hub/containers/') {
133
- release_docker_image.push(IMAGE_TAG)
134
- if(ALIAS_IMAGE_TAGS) {
135
- ALIAS_IMAGE_TAGS.split(',').each { aliasImageTag ->
136
- release_docker_image.push(aliasImageTag)
137
- }
138
- }
139
- }
140
- success "== Pushed '${releaseImageName}' image for version ${IMAGE_TAG} =="
141
- }
142
- }
143
- } //steps
144
- } //stage
145
- }//stages
146
-
147
- post {
148
- always {
149
- script {
150
- sendBuildData(currentBuild)
151
- }
152
- }
153
- }
154
- }//pipeline
@@ -1,102 +0,0 @@
1
- <flow-definition plugin="workflow-job@2.35">
2
- <actions>
3
- <org.jenkinsci.plugins.pipeline.modeldefinition.actions.DeclarativeJobAction plugin="pipeline-model-definition@1.3.9"/>
4
- <org.jenkinsci.plugins.pipeline.modeldefinition.actions.DeclarativeJobPropertyTrackerAction plugin="pipeline-model-definition@1.3.9">
5
- <jobProperties/>
6
- <triggers/>
7
- <parameters>
8
- <string>BRANCH</string>
9
- <string>IMAGE_TAG</string>
10
- <string>ALIAS_IMAGE_TAGS</string>
11
- <string>REPOSITORY_NAME</string>
12
- </parameters>
13
- <options>
14
- <string>skipDefaultCheckout</string>
15
- </options>
16
- </org.jenkinsci.plugins.pipeline.modeldefinition.actions.DeclarativeJobPropertyTrackerAction>
17
- </actions>
18
- <description></description>
19
- <keepDependencies>false</keepDependencies>
20
- <properties>
21
- <hudson.model.ParametersDefinitionProperty>
22
- <parameterDefinitions>
23
- <hudson.model.StringParameterDefinition>
24
- <name>BRANCH</name>
25
- <description>Branch or tag to build</description>
26
- <defaultValue>master</defaultValue>
27
- <trim>false</trim>
28
- </hudson.model.StringParameterDefinition>
29
- <hudson.model.StringParameterDefinition>
30
- <name>DAVINCI_BRANCH</name>
31
- <description>Davinci branch</description>
32
- <defaultValue>master</defaultValue>
33
- <trim>false</trim>
34
- </hudson.model.StringParameterDefinition>
35
- <hudson.model.StringParameterDefinition>
36
- <name>IMAGE_TAG</name>
37
- <description>Docker tag of the image with dist folder which we are going to deploy</description>
38
- <trim>false</trim>
39
- </hudson.model.StringParameterDefinition>
40
- <hudson.model.StringParameterDefinition>
41
- <name>ALIAS_IMAGE_TAGS</name>
42
- <description>Comma separated list of alias tags for the created docker image. Ex: "master,latest"</description>
43
- <trim>false</trim>
44
- </hudson.model.StringParameterDefinition>
45
- <hudson.model.StringParameterDefinition>
46
- <name>REPOSITORY_NAME</name>
47
- <description>Repository name</description>
48
- <trim>false</trim>
49
- </hudson.model.StringParameterDefinition>
50
- </parameterDefinitions>
51
- </hudson.model.ParametersDefinitionProperty>
52
- <hudson.plugins.jira.JiraProjectProperty plugin="jira@3.0.7"/>
53
- <jenkins.model.BuildDiscarderProperty>
54
- <strategy class="hudson.tasks.LogRotator">
55
- <daysToKeep>-1</daysToKeep>
56
- <numToKeep>20</numToKeep>
57
- <artifactDaysToKeep>-1</artifactDaysToKeep>
58
- <artifactNumToKeep>-1</artifactNumToKeep>
59
- </strategy>
60
- </jenkins.model.BuildDiscarderProperty>
61
- <com.sonyericsson.jenkins.plugins.bfa.model.ScannerJobProperty plugin="build-failure-analyzer@1.20.0">
62
- <doNotScan>false</doNotScan>
63
- </com.sonyericsson.jenkins.plugins.bfa.model.ScannerJobProperty>
64
- <com.coravy.hudson.plugins.github.GithubProjectProperty plugin="github@1.29.4">
65
- <projectUrl>$PROJECT_URL</projectUrl>
66
- <displayName></displayName>
67
- </com.coravy.hudson.plugins.github.GithubProjectProperty>
68
- <hudson.plugins.throttleconcurrents.ThrottleJobProperty plugin="throttle-concurrents@2.0.1">
69
- <maxConcurrentPerNode>0</maxConcurrentPerNode>
70
- <maxConcurrentTotal>0</maxConcurrentTotal>
71
- <categories class="java.util.concurrent.CopyOnWriteArrayList"/>
72
- <throttleEnabled>false</throttleEnabled>
73
- <throttleOption>project</throttleOption>
74
- <limitOneJobWithMatchingParams>false</limitOneJobWithMatchingParams>
75
- <paramsToUseForLimit></paramsToUseForLimit>
76
- <configVersion>1</configVersion>
77
- </hudson.plugins.throttleconcurrents.ThrottleJobProperty>
78
- </properties>
79
- <definition class="org.jenkinsci.plugins.workflow.cps.CpsScmFlowDefinition" plugin="workflow-cps@2.74">
80
- <scm class="hudson.plugins.git.GitSCM" plugin="git@3.10.1">
81
- <configVersion>2</configVersion>
82
- <userRemoteConfigs>
83
- <hudson.plugins.git.UserRemoteConfig>
84
- <url>git@github.com:toptal/davinci.git</url>
85
- <credentialsId>$CREDENTIALS_ID</credentialsId>
86
- </hudson.plugins.git.UserRemoteConfig>
87
- </userRemoteConfigs>
88
- <branches>
89
- <hudson.plugins.git.BranchSpec>
90
- <name>master</name>
91
- </hudson.plugins.git.BranchSpec>
92
- </branches>
93
- <doGenerateSubmoduleConfigurations>false</doGenerateSubmoduleConfigurations>
94
- <submoduleCfg class="list"/>
95
- <extensions/>
96
- </scm>
97
- <scriptPath>packages/ci/src/configs/jobs/build-release-image/Jenkinsfile</scriptPath>
98
- <lightweight>false</lightweight>
99
- </definition>
100
- <triggers/>
101
- <disabled>false</disabled>
102
- </flow-definition>
@@ -1,117 +0,0 @@
1
- @Library('globalLibrary@master') _
2
-
3
- githubHelper = new helpers.GithubNotifyHelper()
4
- jobHelper = new helpers.JobHelper()
5
- Map configuration = [:]
6
-
7
- notificationType = params.NOTIFICATION_TYPE
8
- gitCommitId = params.GIT_COMMIT
9
- consumer = params.CONSUMER
10
- brokerURL = params.PACT_BROKER_URL
11
- branchName = params.GITHUB_BRANCH_NAME
12
- repositoryUrl = params.GITHUB_REPO_GIT_URL
13
-
14
- repositoryName = repositoryUrl.tokenize('/').last().split("\\.")[0]
15
- repositorySSHUrl = "git@github.com:toptal/${repositoryName}.git"
16
-
17
- pipeline {
18
- parameters {
19
- string(name: 'NOTIFICATION_TYPE', description: 'Type of notification this job will send. Possible values: github, slack')
20
- string(name: 'CONSUMER', description: "Name of the consumer, e.g. 'Staff Portal'")
21
- string(name: 'PACT_BROKER_URL', defaultValue:'https://pact-broker-internal.toptal.net', description: "Example 'https://pact-broker-internal.toptal.net'")
22
- string(name: 'GIT_COMMIT', description: 'Git commit which is used as a PACT contract version')
23
- string(name: 'GITHUB_BRANCH_NAME', description: 'Branch to build')
24
- string(name: 'GITHUB_REPO_GIT_URL', description: 'Repository URL')
25
- }
26
-
27
- agent {
28
- docker {
29
- image 'pactfoundation/pact-cli'
30
- args """
31
- --entrypoint "" --interactive \
32
- --tty --user root
33
- """
34
- }
35
- }
36
-
37
- options {
38
- ansiColor('xterm')
39
- skipDefaultCheckout()
40
- timestamps()
41
- timeout(time: 20, unit: 'MINUTES')
42
- buildDiscarder(logRotator(daysToKeepStr: '3'))
43
- }
44
-
45
- environment {
46
- PACT_BROKER = credentials('pact-broker')
47
- SLACK_NOTIFICATION_CHANNEL = "${repositoryName}-bullhorn"
48
- }
49
-
50
- stages {
51
- stage('Run can-i-deploy contracts verification') {
52
- steps {
53
- script {
54
- info "Contract version is ${gitCommitId}"
55
-
56
- if (notificationType == 'github') {
57
- githubHelper.notifyPR(
58
- 'Consumer contracts: production', 'PENDING', 'Running contracts verification', gitCommitId, env.BUILD_URL, repositoryName
59
- )
60
- }
61
-
62
- sh """
63
- cd /pact;
64
- bundle exec bin/pact broker can-i-deploy \
65
- --broker-base-url ${brokerURL} \
66
- --broker_username ${env.PACT_BROKER_USR} \
67
- --broker_password ${env.PACT_BROKER_PSW} \
68
- --pacticipant ${consumer} \
69
- --version ${gitCommitId} \
70
- --to production \
71
- --retry-while-unknown 90
72
- """
73
- }
74
- }
75
- }
76
- }
77
-
78
- post {
79
- always{
80
- sendBuildData(currentBuild)
81
- }
82
-
83
- success {
84
- script {
85
- if (notificationType == 'github') {
86
- githubHelper.notifyPR(
87
- 'Consumer contracts: production', 'SUCCESS', 'Contracts passed verification', gitCommitId, env.BUILD_URL, repositoryName
88
- )
89
- }
90
- }
91
- }
92
-
93
- fixed {
94
- script {
95
- if (notificationType == 'slack') {
96
- message = "${env.JOB_NAME} - #${currentBuild.number} back to normal <${env.BUILD_URL}|(Open)>"
97
- slackSend color: 'good', channel: env.SLACK_NOTIFICATION_CHANNEL, message: message
98
- }
99
- }
100
- }
101
-
102
- failure {
103
- script {
104
- if (notificationType == 'slack') {
105
- message = "${env.JOB_NAME} - #${currentBuild.number} failed <${env.BUILD_URL}|(Open)>"
106
- slackSend color: 'danger', channel: env.SLACK_NOTIFICATION_CHANNEL, message: message
107
- }
108
-
109
- if (notificationType == 'github') {
110
- githubHelper.notifyPR(
111
- 'Consumer contracts: production', 'FAILURE', 'Contracts failed or missing verification', gitCommitId, env.BUILD_URL, repositoryName
112
- )
113
- }
114
- }
115
- }
116
- }
117
- }
@@ -1,114 +0,0 @@
1
- <flow-definition plugin="workflow-job@2.39">
2
- <actions>
3
- <org.jenkinsci.plugins.pipeline.modeldefinition.actions.DeclarativeJobAction plugin="pipeline-model-definition@1.6.0"/>
4
- <org.jenkinsci.plugins.pipeline.modeldefinition.actions.DeclarativeJobPropertyTrackerAction plugin="pipeline-model-definition@1.6.0">
5
- <jobProperties>
6
- <string>jenkins.model.BuildDiscarderProperty</string>
7
- </jobProperties>
8
- <triggers/>
9
- <parameters>
10
- <string>GIT_COMMIT</string>
11
- <string>CONSUMER</string>
12
- <string>PACT_BROKER_URL</string>
13
- <string>JOB_TYPE</string>
14
- <string>GITHUB_BRANCH_NAME</string>
15
- <string>GITHUB_REPO_GIT_URL</string>
16
- </parameters>
17
- <options>
18
- <string>skipDefaultCheckout</string>
19
- </options>
20
- </org.jenkinsci.plugins.pipeline.modeldefinition.actions.DeclarativeJobPropertyTrackerAction>
21
- </actions>
22
- <description/>
23
- <keepDependencies>false</keepDependencies>
24
- <properties>
25
- <hudson.plugins.jira.JiraProjectProperty plugin="jira@3.0.15"/>
26
- <jenkins.model.BuildDiscarderProperty>
27
- <strategy class="hudson.tasks.LogRotator">
28
- <daysToKeep>3</daysToKeep>
29
- <numToKeep>-1</numToKeep>
30
- <artifactDaysToKeep>-1</artifactDaysToKeep>
31
- <artifactNumToKeep>-1</artifactNumToKeep>
32
- </strategy>
33
- </jenkins.model.BuildDiscarderProperty>
34
- <com.sonyericsson.jenkins.plugins.bfa.model.ScannerJobProperty plugin="build-failure-analyzer@1.20.0">
35
- <doNotScan>false</doNotScan>
36
- </com.sonyericsson.jenkins.plugins.bfa.model.ScannerJobProperty>
37
- <com.coravy.hudson.plugins.github.GithubProjectProperty plugin="github@1.30.0">
38
- <projectUrl>$PROJECT_URL</projectUrl>
39
- <displayName/>
40
- </com.coravy.hudson.plugins.github.GithubProjectProperty>
41
- <com.sonyericsson.rebuild.RebuildSettings plugin="rebuild@1.31">
42
- <autoRebuild>false</autoRebuild>
43
- <rebuildDisabled>false</rebuildDisabled>
44
- </com.sonyericsson.rebuild.RebuildSettings>
45
- <hudson.plugins.throttleconcurrents.ThrottleJobProperty plugin="throttle-concurrents@2.0.1">
46
- <maxConcurrentPerNode>0</maxConcurrentPerNode>
47
- <maxConcurrentTotal>0</maxConcurrentTotal>
48
- <categories class="java.util.concurrent.CopyOnWriteArrayList"/>
49
- <throttleEnabled>false</throttleEnabled>
50
- <throttleOption>project</throttleOption>
51
- <limitOneJobWithMatchingParams>false</limitOneJobWithMatchingParams>
52
- <paramsToUseForLimit/>
53
- </hudson.plugins.throttleconcurrents.ThrottleJobProperty>
54
- <hudson.model.ParametersDefinitionProperty>
55
- <parameterDefinitions>
56
- <hudson.model.StringParameterDefinition>
57
- <name>JOB_TYPE</name>
58
- <description>Type of parent job that initiate contracts verification. Possible values: pr, master</description>
59
- <trim>false</trim>
60
- </hudson.model.StringParameterDefinition>
61
- <hudson.model.StringParameterDefinition>
62
- <name>GIT_COMMIT</name>
63
- <description>Git commit which is used as a pact contract version</description>
64
- <trim>false</trim>
65
- </hudson.model.StringParameterDefinition>
66
- <hudson.model.StringParameterDefinition>
67
- <name>CONSUMER</name>
68
- <description>Name of the consumer, e.g. Staff Portal</description>
69
- <trim>false</trim>
70
- </hudson.model.StringParameterDefinition>
71
- <hudson.model.StringParameterDefinition>
72
- <name>PACT_BROKER_URL</name>
73
- <description>Example https://pact-broker-internal.toptal.net</description>
74
- <trim>false</trim>
75
- </hudson.model.StringParameterDefinition>
76
- <hudson.model.StringParameterDefinition>
77
- <name>GITHUB_BRANCH_NAME</name>
78
- <description>Branch to build</description>
79
- <defaultValue />
80
- <trim>false</trim>
81
- </hudson.model.StringParameterDefinition>
82
- <hudson.model.StringParameterDefinition>
83
- <name>GITHUB_REPO_GIT_URL</name>
84
- <description>Repository URL</description>
85
- <defaultValue />
86
- <trim>false</trim>
87
- </hudson.model.StringParameterDefinition>
88
- </parameterDefinitions>
89
- </hudson.model.ParametersDefinitionProperty>
90
- </properties>
91
- <definition class="org.jenkinsci.plugins.workflow.cps.CpsScmFlowDefinition" plugin="workflow-cps@2.80">
92
- <scm class="hudson.plugins.git.GitSCM" plugin="git@4.2.2">
93
- <configVersion>2</configVersion>
94
- <userRemoteConfigs>
95
- <hudson.plugins.git.UserRemoteConfig>
96
- <url>git@github.com:toptal/davinci.git</url>
97
- <credentialsId>$CREDENTIALS_ID</credentialsId>
98
- </hudson.plugins.git.UserRemoteConfig>
99
- </userRemoteConfigs>
100
- <branches>
101
- <hudson.plugins.git.BranchSpec>
102
- <name>master</name>
103
- </hudson.plugins.git.BranchSpec>
104
- </branches>
105
- <doGenerateSubmoduleConfigurations>false</doGenerateSubmoduleConfigurations>
106
- <submoduleCfg class="list"/>
107
- <extensions/>
108
- </scm>
109
- <scriptPath>packages/ci/src/configs/jobs/consumer-contracts-verify/Jenkinsfile</scriptPath>
110
- <lightweight>true</lightweight>
111
- </definition>
112
- <triggers/>
113
- <disabled>false</disabled>
114
- </flow-definition>